@fluentui/react-northstar
Version:
A themable React component library.
12 lines (11 loc) • 512 B
TypeScript
import { BoxProps } from '../Box/Box';
export interface AttachmentBodyOwnProps {
}
export interface AttachmentBodyProps extends AttachmentBodyOwnProps, BoxProps {
}
export declare type AttachmentBodyStylesProps = never;
export declare const attachmentBodyClassName = "ui-attachment__body";
/**
* An AttachmentBody provides a slot for header and description in the Attachment.
*/
export declare const AttachmentBody: import("@fluentui/react-bindings").ComponentWithAs<"div", AttachmentBodyOwnProps & BoxProps>;