office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
30 lines • 1 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`
* {@docCategory Icon}
*/
var IconType;
(function (IconType) {
/**
* Render using the fabric icon font.
* @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`
*/
IconType[IconType["default"] = 0] = "default";
/**
* Render using an image, where imageProps would be used.
* @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`
*/
IconType[IconType["image"] = 1] = "image";
/**
* Deprecated, use `default`.
* @deprecated Use `default`.
*/
IconType[IconType["Default"] = 100000] = "Default";
/**
* Deprecated, use `image`.
* @deprecated Use `image`.
*/
IconType[IconType["Image"] = 100001] = "Image";
})(IconType = exports.IconType || (exports.IconType = {}));
//# sourceMappingURL=Icon.types.js.map
;