@fluentui/react-northstar
Version:
A themable React component library.
25 lines (24 loc) • 812 B
TypeScript
import { ButtonProps, ButtonStylesProps } from '../Button/Button';
export interface AttachmentActionOwnProps {
}
export interface AttachmentActionProps extends AttachmentActionOwnProps, ButtonProps {
text?: never;
iconOnly?: never;
circular?: never;
size?: never;
fluid?: never;
inverted?: never;
}
export declare type AttachmentActionStylesProps = ButtonStylesProps & {
text?: never;
iconOnly?: never;
circular?: never;
size?: never;
fluid?: never;
inverted?: never;
};
export declare const attachmentActionClassName = "ui-attachment__action";
/**
* An AttachmentAction provides a slot for actions in the Attachment.
*/
export declare const AttachmentAction: import("@fluentui/react-bindings").ComponentWithAs<"button", AttachmentActionOwnProps & ButtonProps>;