import type { ITheme } from "../../types/theme.type"; interface IProps { theme: ITheme; isSelected: boolean; onSelect: (id: string) => void; } export const ThemeCard: React.FC = ({ theme, isSelected, onSelect, }) => { const { id, name, description } = theme; return ( ); };