import * as React from 'react'; interface Props { children: any; onClick(e: React.FormEvent): void; className?: string; outline?: boolean; disabled?: boolean; } const Button = ({ children, onClick, className = '', outline = false, disabled = false}: Props) => ( ); export default Button;