import * as React from 'react'; import { ChoiceGroup, IChoiceGroupOption } from '@fluentui/react/lib/ChoiceGroup'; import { Label } from '@fluentui/react/lib/Label'; import { Icon } from '@fluentui/react/lib/Icon'; import { Stack } from '@fluentui/react/lib/Stack'; import { useId } from '@fluentui/react-hooks'; const options: IChoiceGroupOption[] = [ { key: 'A', text: 'Option A' }, { key: 'B', text: 'Option B' }, { key: 'C', text: 'Option C', disabled: true }, { key: 'D', text: 'Option D' }, ]; export const ChoiceGroupLabelExample: React.FunctionComponent = () => { // Use the useId() hook to ensure that the label ID is unique on the page. Notes: // - It's also okay to use a plain string and manually ensure its uniqueness. // - In a function component, we get the ID with the useId() hook so that it will stay the same. // (In a class, you'd create the ID in the constructor with getId and save it in a private member.) const labelId = useId('labelElement'); return (