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