mirror of
https://github.com/simple-icons/simple-icons.git
synced 2025-01-15 01:28:34 +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;
|
||
|
}
|