@fluentui/react-northstar
Version:
A themable React component library.
13 lines (12 loc) • 540 B
TypeScript
import { BoxProps } from '../Box/Box';
interface ToolbarItemIconOwnProps {
}
export interface ToolbarItemIconProps extends BoxProps, ToolbarItemIconOwnProps {
}
export declare type ToolbarItemIconStylesProps = never;
export declare const toolbarItemIconClassName = "ui-toolbar__itemicon";
/**
* A ToolbarItemIcon allows a user to have a dedicated component that can be targeted from the theme.
*/
export declare const ToolbarItemIcon: import("@fluentui/react-bindings").ComponentWithAs<"div", ToolbarItemIconProps & BoxProps>;
export {};