UNPKG

@lobehub/icons

Version:

Popular AI / LLM Model Brand SVG Logo and Icon Collection

18 lines (17 loc) 539 B
import Avatar from './components/Avatar'; import Color from './components/Color'; import Combine from './components/Combine'; import Mono from './components/Mono'; import Text from './components/Text'; import TextColor from './components/TextColor'; export type CompoundedIcon = typeof Mono & { Avatar: typeof Avatar; Color: typeof Color; Combine: typeof Combine; Text: typeof Text; TextColor: typeof TextColor; colorPrimary: string; title: string; }; declare const Icons: CompoundedIcon; export default Icons;