import React, { FunctionComponent } from 'react'; export type Type = 'default' | 'action'; interface Props { /** * Click event handler * @default null */ onClick?: () => void; /** * Button type yo */ type?: Type; } const Button: FunctionComponent = ({ children, type = 'default', onClick }) => { return ( ); }; export default Button;