2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-19 16:59:02 +00:00

Add optional tags to IconifyInfo type

This commit is contained in:
Vjacheslav Trushkin 2022-08-21 14:35:59 +03:00
parent 39ceab4869
commit 57b8be17ed

View File

@ -154,6 +154,9 @@ export interface IconifyInfo {
// Category on Iconify collections list.
category?: string;
// List of tags to group similar icon sets.
tags?: string[];
// Palette status. True if icons have predefined color scheme, false if icons use currentColor.
// Ideally, icon set should not mix icons with and without palette to simplify search.
palette?: boolean;