office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 489 B
TypeScript
import * as React from 'react';
import { IColor } from 'office-ui-fabric-react/lib/index';
export interface IBasicColorPickerExampleState {
color: IColor;
alphaSliderHidden: boolean;
showPreview: boolean;
}
export declare class ColorPickerBasicExample extends React.Component<{}, IBasicColorPickerExampleState> {
state: IBasicColorPickerExampleState;
render(): JSX.Element;
private _updateColor;
private _onHideAlphaClick;
private _onShowPreviewBoxClick;
}