@fluentui/react
Version:
Reusable React components for building web experiences.
9 lines (8 loc) • 404 B
TypeScript
import type { IButtonStyles } from './Button.types';
import type { ITheme } from '../../Styling';
/**
* Gets the base button styles. Note: because it is a base class to be used with the `mergeRules`
* helper, it should have values for all class names in the interface. This let `mergeRules` optimize
* mixing class names together.
*/
export declare const getStyles: (theme: ITheme) => IButtonStyles;