@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
16 lines (15 loc) • 406 B
TypeScript
/**
* 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 {};