UNPKG

563 BTypeScriptView Raw
1export interface SimpleIcon {
2 title: string;
3 slug: string;
4 svg: string;
5 path: string;
6 source: string;
7 hex: string;
8 guidelines?: string | undefined;
9 license?:
10 | {
11 type: string;
12 url: string;
13 }
14 | undefined;
15}
16
17/**
18 * @deprecated The `simple-icons` entrypoint will be removed in the next major. Please switch to using `import * as icons from "simple-icons/icons"` if you need an object with all the icons.
19 */
20declare const icons: Record<string, SimpleIcon> & {
21 Get(name: string): SimpleIcon;
22};
23
24export default icons;