UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

25 lines 876 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = require("react"); var ChoiceGroup_1 = require("office-ui-fabric-react/lib/ChoiceGroup"); exports.ChoiceGroupIconExample = function () { return (React.createElement(ChoiceGroup_1.ChoiceGroup, { label: "Pick one icon", defaultSelectedKey: "day", options: [ { key: 'day', iconProps: { iconName: 'CalendarDay' }, text: 'Day' }, { key: 'week', iconProps: { iconName: 'CalendarWeek' }, text: 'Week' }, { key: 'month', iconProps: { iconName: 'Calendar' }, text: 'Month', disabled: true } ] })); }; //# sourceMappingURL=ChoiceGroup.Icon.Example.js.map