interface IProps { name: string; width?: string; type: 'submit' | 'button' | 'reset'; onClick?: () => void; disabled?: boolean; } const Button = (props: IProps) => { return (
); }; export default Button;