@fluentui/react-northstar
Version:
A themable React component library.
16 lines (15 loc) • 642 B
TypeScript
import { Property } from 'csstype';
import { ItemType } from '../../../types';
import { TeamsSchemeMappingWithAreas } from '../../types';
export declare const dividerColorAreas: "foreground"[];
export declare type DividerColorSchemeMapping = TeamsSchemeMappingWithAreas<ItemType<typeof dividerColorAreas>>;
export interface DividerVariables {
colorScheme: DividerColorSchemeMapping;
dividerColor: string;
textColor: string;
textFontSize: string;
textLineHeight: string;
importantFontWeight: Property.FontWeight;
dividerPadding: string;
}
export declare const dividerVariables: (siteVars: any) => DividerVariables;