office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 263 B
JavaScript
module.exports = "export interface IColorPickerProps {\n /**\n * The CSS-compatible string to describe the color\n */\n color: string;\n\n /**\n * Callback issued when the user changes the color.\n */\n onColorChanged?: (color: string) => void;\n}\n";