@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
16 lines (15 loc) • 486 B
TypeScript
import React from 'react';
/**
* Renders a save icon.
*
* This icon is typically used in buttons that trigger the saving of data,
* configurations, or agent sources.
*
* @param props - SVG properties augmented with an optional `size`
*
* @private internal subcomponent used by various components
*/
export declare function SaveIcon({ size, color, ...props }: {
size?: number;
color?: string;
} & React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;