@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
20 lines (19 loc) • 543 B
TypeScript
/**
* Props for attachment icon.
*/
type AttachmentIconProps = {
size?: number;
color?: string;
};
/**
* Renders an attachment icon.
*
* This icon is typically used in chat interfaces to indicate the ability to
* upload or view files associated with a message.
*
* @param props - SVG properties augmented with an optional `size`
*
* @private internal subcomponent used by various components
*/
export declare function AttachmentIcon({ size, color }: AttachmentIconProps): import("react/jsx-runtime").JSX.Element;
export {};