@fluentui/react-northstar
Version:
A themable React component library.
13 lines (12 loc) • 482 B
TypeScript
import { SizeValue } from '../../../../utils';
export interface LoaderVariables {
containerHeights: Record<SizeValue, string>;
containerWidths: Record<SizeValue, string>;
svgHeights: Record<SizeValue, string>;
svgTranslatePosition: Record<SizeValue, string>;
svgWidths: Record<SizeValue, string>;
svgTrackColor: string;
svgTailColor: string;
svgSecondaryColor: string;
}
export declare const loaderVariables: (siteVariables: any) => LoaderVariables;