import { StyledButton } from "./styles"; import { ButtonProps } from "../types"; export const Button = ({ color, fixedWidth, children, onClick, }: ButtonProps) => ( {children} );