import { classNames } from '@/Utils/ConcatenateClassNames' import { FunctionComponent, ReactNode } from 'react' type Props = { className?: string children: ReactNode } export const Title: FunctionComponent = ({ children, className }) => (

{children}

) export const Subtitle: FunctionComponent = ({ children, className }) => (

{children}

) export const SubtitleLight: FunctionComponent = ({ children, className }) => (

{children}

) export const Text: FunctionComponent = ({ children, className }) => (

{children}

) const buttonClasses = 'block bg-default text-text rounded border-solid \ border px-4 py-1.5 font-bold text-sm w-fit \ focus:bg-contrast hover:bg-contrast border-border' export const LinkButton: FunctionComponent<{ label: string link: string className?: string }> = ({ label, link, className }) => ( {label} )