@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
13 lines (12 loc) • 364 B
TypeScript
import Avatar from './components/Avatar';
import BrandMono from './components/BrandMono';
import Mono from './components/Mono';
export type CompoundedIcon = typeof Mono & {
Avatar: typeof Avatar;
Brand: typeof BrandMono;
Text: typeof BrandMono;
colorPrimary: string;
title: string;
};
declare const Icons: CompoundedIcon;
export default Icons;