mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-26 01:00:27 +02:00
16 lines
252 B
TypeScript
16 lines
252 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;
|
||
|
}
|