import { FC, ReactNode } from "react"; export const Label: FC<{ children: ReactNode; text: string }> = ({ children, text, }) => { return ( ); };