UNPKG

443 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
17declare const icons: Record<string, SimpleIcon> & {
18 /**
19 * @deprecated use .Get instead
20 */
21 get(name: string): SimpleIcon;
22 Get(name: string): SimpleIcon;
23};
24
25export default icons;