UNPKG

@promptbook/google

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

16 lines (15 loc) 421 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 {};