import * as React from 'react'; import { Colors, Sizes, Variants } from "../../styles"; import StyledButton from "./styled-button"; interface Props { color: Colors; size: Sizes; variant: Variants; children?: React.ReactNode; onClick?: () => void; style?: React.CSSProperties; fullWidth?: boolean; disabled?: boolean; round?: boolean; } const Button = (props: Props) => ( {props.children} ); Button.defaultProps = { color: "primary", size: "md", variant: "contained", }; export default Button;