UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

11 lines (10 loc) 247 B
export interface IColorPickerProps { /** * The CSS-compatible string to describe the color */ color: string; /** * Callback issued when the user changes the color. */ onColorChanged?: (color: string) => void; }