From 57b8be17ede32a1c170a792cdaddc3bee66b0c11 Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Sun, 21 Aug 2022 14:35:59 +0300 Subject: [PATCH] Add optional tags to IconifyInfo type --- packages/types/types.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/types/types.d.ts b/packages/types/types.d.ts index 2ccb096..df92487 100644 --- a/packages/types/types.d.ts +++ b/packages/types/types.d.ts @@ -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;