import clsx from 'clsx'; import { FC, PropsWithChildren } from 'react'; interface Props { className?: string; } export const SecondaryButton: FC> = ({ className, children }) => { return ( ); };