@fluentui/react-northstar
Version:
A themable React component library.
49 lines (48 loc) • 1.8 kB
TypeScript
import { SiteVariablesPrepared } from '@fluentui/styles';
export interface SplitButtonVariables {
borderRadius: string;
borderColorPrimary: string;
borderColor: string;
borderColorDisabled: string;
smallDimension: string;
smallPadding: string;
smallMinWidth: string;
smallBoxShadow: string;
padding: string;
minWidth: string;
boxShadow: string;
dividerColor: string;
dividerPrimaryColor: string;
toggleButtonHeight: string;
toggleButtonColor: string;
toggleButtonBackgroundColor: string;
toggleButtonBorderRadius: string;
toggleButtonBorderColor: string;
toggleButtonBoxShadow: string;
toggleButtonColorHover: string;
toggleButtonBackgroundColorHover: string;
toggleButtonBorderColorHover: string;
toggleButtonColorActive: string;
toggleButtonBackgroundColorActive: string;
toggleButtonBorderColorActive: string;
toggleButtonBackgroundColorFocus: string;
toggleButtonBorderColorFocus: string;
toggleButtonColorFocus: string;
toggleButtonPrimaryColor: string;
toggleButtonPrimaryHoverBackgroundColor: string;
toggleButtonPrimaryHoverColor: string;
toggleButtonPrimaryBackgroundColor: string;
toggleButtonPrimaryBorderColor: string;
toggleButtonPrimaryBoxShadow: string;
toggleButtonPrimaryBackgroundColorActive: string;
toggleButtonPrimaryBackgroundColorFocus: string;
toggleButtonColorDisabled: string;
toggleButtonBackgroundColorDisabled: string;
toggleButtonIndicatorSize: string;
focusBorderRadius: string;
focusBorderWidth: string;
focusInnerBorderColor: string;
focusOuterBorderColor: string;
focusBorderZIndex: string;
}
export declare const splitButtonVariables: (siteVars: SiteVariablesPrepared) => SplitButtonVariables;