From 373ccf351ad4835339d66a7bbd8a5afb47f12f2c Mon Sep 17 00:00:00 2001 From: higorgoulart Date: Sat, 8 Nov 2025 14:00:01 -0300 Subject: [PATCH] feat: review facts --- src/components/IconsGroup/IconsGroup.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/IconsGroup/IconsGroup.tsx b/src/components/IconsGroup/IconsGroup.tsx index 733560e43..041c01139 100644 --- a/src/components/IconsGroup/IconsGroup.tsx +++ b/src/components/IconsGroup/IconsGroup.tsx @@ -6,7 +6,7 @@ import Icon from '@stremio/stremio-icons/react'; import styles from './IconsGroup.less'; import { Tooltip } from 'stremio/common/Tooltips'; -type GroupItem = { +type Item = { icon: string; label?: string; filled?: string; @@ -16,7 +16,7 @@ type GroupItem = { }; type Props = { - items: GroupItem[]; + items: Item[]; className?: string; };