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; };