import { InfoLabel, Label, LabelProps, makeStyles, Slot } from "@fluentui/react-components"; export default function infoLabel(label: string, hint: string, noWrap?: boolean): Slot { const cls = useStyles(); return { children: (_: unknown, props: LabelProps) => { label } }; } const useStyles = makeStyles({ noWrap: { whiteSpace: "pre" } });