office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
1 lines • 395 B
JavaScript
define([], function() { return "/* tslint:disable:no-unused-variable */\nimport * as React from 'react';\n/* tslint:enable:no-unused-variable */\n\nexport 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}"; });