import React from 'react'; interface Props { variant?: 'contained' | 'outlined' children: string; } const styles = { contained: "bg-black text-white", outlined: "border-2 border-black" }; const Button: React.FC = ({ children, variant = 'contained' }) => { return ( ); }; export default Button;