import classNames from "classnames"; interface Props { children: React.ReactNode; theme?: "primary" | "secondary" | "white"; onClick?: () => void; } export const Button: React.FC = ({ children, theme = "primary", ...props }) => { return ( ); };