@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 613 B
TypeScript
import { SizeValue } from '../../utils';
import { BoxProps } from '../Box/Box';
interface ButtonContentOwnProps {
size?: SizeValue;
}
export interface ButtonContentProps extends BoxProps, ButtonContentOwnProps {
}
export declare type ButtonContentStylesProps = Pick<ButtonContentProps, 'size'>;
export declare const buttonContentClassName = "ui-button__content";
/**
* A ButtonContent allows a user to have a dedicated component that can be targeted from the theme.
*/
export declare const ButtonContent: import("@fluentui/react-bindings").ComponentWithAs<"span", ButtonContentProps & BoxProps>;
export {};