@promptbook/markdown-utils
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 483 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;