@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
12 lines (11 loc) • 336 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;
colorPrimary: string;
title: string;
};
declare const Icons: CompoundedIcon;
export default Icons;