import * as React from 'react'; import { ITheme, FabricSlots, IThemeRules } from 'office-ui-fabric-react'; import { MainPanelInnerContent } from '../shared/MainPanelStyles'; import { TitleText } from '../shared/Typography'; import { Pivot, PivotItem } from 'office-ui-fabric-react'; import { FabricPalette } from './FabricPalette'; import { SemanticSlots } from './SemanticSlots'; import { IColor } from 'office-ui-fabric-react/lib/Color'; export interface IThemeSlotsProps { theme?: ITheme; themeRules?: IThemeRules; onFabricPaletteColorChange: (newColor: IColor | undefined, fabricSlot: FabricSlots) => void; } export const ThemeSlots: React.FunctionComponent = (props: IThemeSlotsProps) => { return (
Theme slots
); };