import React, { FC } from 'react'; import { ButtonProps } from 'types'; import { buttonTextSizeDecorator } from 'utils'; import Text from '../Text'; import * as S from './styles'; export const Button: FC = ({ children, size, testId, weight, ...rest }) => { return ( {children && ( {children} )} ); }; Button.defaultProps = { background: '#851bb7', elevation: 4, size: 'medium', testId: 'button', variant: 'regular', }; export default Button;