apphouse
Version:
Component library for React that uses observable state management and theme-able components.
19 lines (18 loc) • 364 B
TypeScript
interface IconAiProps {
/**
* The color of the icon
* @default '#000000'
*/
color?: string;
/**
* The size of the icon
* @default 20
*/
size?: number;
}
/**
* A react component for the an AI icon
* @returns
*/
export declare const IconAi: (props: IconAiProps) => import("react/jsx-runtime").JSX.Element;
export {};