import type { FC, ReactNode } from 'react'; import styles from './Label.module.css'; export interface LabelProps { label: ReactNode, children: ReactNode, } export const Label: FC = ({ label, children }) => { return ( ); };