office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
28 lines • 906 B
JavaScript
/**
* @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`
* {@docCategory Icon}
*/
export 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 || (IconType = {}));
//# sourceMappingURL=Icon.types.js.map