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