office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
25 lines (24 loc) • 585 B
TypeScript
import { IStyle } from '../../Styling';
export declare type IThemePagePalette = {
key: string;
name: string;
value: string;
description: string;
};
export interface IThemePageState {
palette: IThemePagePalette[];
semanticColors: IThemePagePalette[];
colorPickerProps?: {
targetElement: HTMLElement;
value: any;
index: number;
};
activeList?: string;
}
export interface IThemePageStyleProps {
}
export interface IThemePageStyles {
colorSwatch: IStyle;
swatch: IStyle;
colorValue: IStyle;
}