UNPKG

@fluentui/react-northstar

Version:
25 lines (24 loc) 812 B
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>;