@fluentui/react-northstar
Version:
A themable React component library.
12 lines (11 loc) • 521 B
TypeScript
import { BoxProps } from '../Box/Box';
export interface AttachmentIconOwnProps {
}
export interface AttachmentIconProps extends AttachmentIconOwnProps, BoxProps {
}
export declare type AttachmentIconStylesProps = never;
export declare const attachmentIconClassName = "ui-attachment__icon";
/**
* An AttachmentIcon provides a slot for a glyph that describes content in the Attachment.
*/
export declare const AttachmentIcon: import("@fluentui/react-bindings").ComponentWithAs<"span", AttachmentIconOwnProps & BoxProps>;