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