@fluentui/react-northstar
Version:
A themable React component library.
19 lines (18 loc) • 718 B
TypeScript
import { ItemType } from '../../../../themes/types';
import { TeamsSchemeMappingWithAreas } from '../../types';
export declare const segmentColorAreas: "foreground"[];
export declare type SegmentColorSchemeMapping = TeamsSchemeMappingWithAreas<ItemType<typeof segmentColorAreas>>;
export interface SegmentVariables {
colorScheme: SegmentColorSchemeMapping;
color: string;
disabledColor: string;
backgroundColor: string;
disabledBackgroundColor: string;
disabledBorderColor: string;
borderRadius: string | number;
borderStyle: string;
borderWidth: string;
boxShadow: string;
padding: string;
}
export declare const segmentVariables: (siteVariables: any) => SegmentVariables;