mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 09:54:11 +03:00
25 lines
563 B
TypeScript
25 lines
563 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;
|
|
}
|
|
|
|
/**
|
|
* @deprecated The `simple-icons` entrypoint will be removed in the next major. Please switch to using `import * as icons from "simple-icons/icons"` if you need an object with all the icons.
|
|
*/
|
|
declare const icons: Record<string, SimpleIcon> & {
|
|
Get(name: string): SimpleIcon;
|
|
};
|
|
|
|
export default icons;
|