mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-01-14 22:21:12 +03: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;
|
||
|
}
|