office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 353 B
TypeScript
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;
/**
* The setting of whether hide alpha control slider.
*/
alphaSliderHidden?: boolean;
}