office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
32 lines (29 loc) • 777 B
Plain Text
let { ChoiceGroup, Fabric } = window.Fabric;
class ChoiceGroupIconExample extends React.Component<any, any> {
public render(): JSX.Element {
return (
<ChoiceGroup
label="Pick one icon"
options={[
{
key: 'day',
iconProps: { iconName: 'CalendarDay' },
text: 'Day'
},
{
key: 'week',
iconProps: { iconName: 'CalendarWeek' },
text: 'Week'
},
{
key: 'month',
iconProps: { iconName: 'Calendar' },
text: 'Month',
disabled: true
}
]}
/>
);
}
}
ReactDOM.render(<ChoiceGroupIconExample />, document.getElementById('content'));