@fluentui/react-northstar
Version:
A themable React component library.
12 lines (11 loc) • 505 B
TypeScript
import { BoxProps } from '../Box/Box';
export interface AttachmentHeaderOwnProps {
}
export interface AttachmentHeaderProps extends AttachmentHeaderOwnProps, BoxProps {
}
export declare type AttachmentHeaderStylesProps = never;
export declare const attachmentHeaderClassName = "ui-attachment__header";
/**
* A AttachmentHeader provides a title for the Attachment.
*/
export declare const AttachmentHeader: import("@fluentui/react-bindings").ComponentWithAs<"span", AttachmentHeaderOwnProps & BoxProps>;