@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
12 lines (11 loc) • 373 B
TypeScript
import { CSSProperties } from 'react';
export interface ModelIconProps {
className?: string;
model?: string;
shape?: 'circle' | 'square';
size?: number;
style?: CSSProperties;
type?: 'avatar' | 'mono' | 'color' | 'combine' | 'combine-color';
}
declare const ModelIcon: import("react").NamedExoticComponent<ModelIconProps>;
export default ModelIcon;