@fluentui/react-northstar
Version:
A themable React component library.
34 lines (33 loc) • 1.22 kB
TypeScript
import { ItemType } from '../../../types';
import { TeamsSchemeMappingWithAreas } from '../../types';
export declare const labelColorAreas: ("background" | "foreground")[];
export declare type LabelColorSchemeMapping = TeamsSchemeMappingWithAreas<ItemType<typeof labelColorAreas>>;
export interface AvatarVariables {
avatarBorderColor: string;
avatarBorderWidth: string;
initialsFontWeight: string;
squareAvatarBorderRadius: string;
iconColor: string;
iconBackgroundColor: string;
statusBorderColor: string;
statusBorderWidth: string;
statusSuccessBackgroundColor: string;
statusSuccessColor: string;
statusInfoBackgroundColor: string;
statusInfoColor: string;
statusWarningBackgroundColor: string;
statusWarningColor: string;
statusErrorBackgroundColor: string;
statusErrorColor: string;
statusBackgroundColor: string;
statusColor: string;
imageWidth: string;
imageHeight: string;
imageAvatarRadius: string;
imageAvatarSize: string;
imageCircularRadius: string;
labelCircularRadius: string;
labelColor: string;
labelBackground: string;
}
export declare const avatarVariables: (siteVariables: any) => AvatarVariables;