mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
26 lines
443 B
TypeScript
26 lines
443 B
TypeScript
|
export interface SimpleIcon {
|
||
|
title: string;
|
||
|
slug: string;
|
||
|
svg: string;
|
||
|
path: string;
|
||
|
source: string;
|
||
|
hex: string;
|
||
|
guidelines?: string | undefined;
|
||
|
license?:
|
||
|
| {
|
||
|
type: string;
|
||
|
url: string;
|
||
|
}
|
||
|
| undefined;
|
||
|
}
|
||
|
|
||
|
declare const icons: Record<string, SimpleIcon> & {
|
||
|
/**
|
||
|
* @deprecated use .Get instead
|
||
|
*/
|
||
|
get(name: string): SimpleIcon;
|
||
|
Get(name: string): SimpleIcon;
|
||
|
};
|
||
|
|
||
|
export default icons;
|