UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

19 lines (18 loc) 431 B
export interface IColorPickerProps { /** * Gets the component ref. */ componentRef?: () => void; /** * The CSS-compatible string to describe the color */ color: string; /** * Callback issued when the user changes the color. */ onColorChanged?: (color: string) => void; /** * The setting of whether hide alpha control slider. */ alphaSliderHidden?: boolean; }