feat: review facts

This commit is contained in:
higorgoulart 2025-11-08 14:00:01 -03:00
parent 987201edd3
commit 373ccf351a

View file

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