import * as React from 'react'; import { StyledButton, StyledLabel } from './styles'; interface Props { background?: string; foreground?: string; type?: 'contained' | 'outlined'; children?: any; onClick?: (e: React.MouseEvent) => void; style?: any; } export const Button = ({ background, foreground, type, onClick, children, style, }: Props) => ( {children} );