UNPKG

@promptbook/remote-server

Version:

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

17 lines (16 loc) 424 B
/** * Props for the TeacherIcon component. */ type TeacherIconProps = { size?: number; color?: string; }; /** * Renders a teacher/graduation cap icon. * * @param props - SVG properties augmented with an optional `size` * * @private internal subcomponent used by various components */ export declare function TeacherIcon({ size, color }: TeacherIconProps): import("react/jsx-runtime").JSX.Element; export {};