UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

17 lines (16 loc) 409 B
/** * Props for the EmailIcon component. */ type EmailIconProps = { size?: number; color?: string; }; /** * Renders an email/envelope icon. * * @param props - SVG properties augmented with an optional `size` * * @private internal subcomponent used by various components */ export declare function EmailIcon({ size, color }: EmailIconProps): import("react/jsx-runtime").JSX.Element; export {};