office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
10 lines (9 loc) • 344 B
TypeScript
import * as React from 'react';
export interface IBasicSwatchColorPickerExampleState {
color: string | undefined;
previewColor: string | undefined;
}
export declare class SwatchColorPickerBasicExample extends React.Component<any, IBasicSwatchColorPickerExampleState> {
constructor(props: any);
render(): JSX.Element;
}