UNPKG

@promptbook/remote-client

Version:

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

20 lines (19 loc) 490 B
/** * Props for camera icon. */ type CameraIconProps = { size?: number; color?: string; }; /** * Renders a camera icon. * * This icon is typically used in buttons or inputs that trigger image capture * or selection. * * @param props - SVG properties augmented with an optional `size` * * @private internal subcomponent used by various components */ export declare function CameraIcon({ size, color }: CameraIconProps): import("react/jsx-runtime").JSX.Element; export {};