@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
14 lines (13 loc) • 464 B
TypeScript
import { SVGProps } from 'react';
/**
* Renders an information/about icon.
*
* This icon is typically used in UI elements that provide additional information
* or "about" details to the user.
*
* @param props - SVG properties augmented with an optional `size`
* @private internal subcomponent used by various components
*/
export declare function AboutIcon(props: SVGProps<SVGSVGElement> & {
size?: number;
}): import("react/jsx-runtime").JSX.Element;