|
@@ -1,11 +1,10 @@
|
|
import StyledButton, {
|
|
import StyledButton, {
|
|
- Props as ButtonProps,
|
|
|
|
|
|
+ ButtonProps,
|
|
} from 'components/common/Button/Button.styled';
|
|
} from 'components/common/Button/Button.styled';
|
|
import React from 'react';
|
|
import React from 'react';
|
|
|
|
|
|
type Props = ButtonProps;
|
|
type Props = ButtonProps;
|
|
|
|
|
|
export const Button: React.FC<Props> = (props) => {
|
|
export const Button: React.FC<Props> = (props) => {
|
|
- // Later we can add other logic here
|
|
|
|
return <StyledButton {...props} />;
|
|
return <StyledButton {...props} />;
|
|
};
|
|
};
|