import "./buttonPrimary.css"; interface ButtonPrimaryProps { value: string; onClick?: () => void; } export default function ButtonPrimary({ value, onClick }: ButtonPrimaryProps) { return ( ); }