interface ButtonProps { text?: string, icon?: string, onClick: () => void, } function Button(props: ButtonProps): JSX.Element { return ( ) } export default Button;