import { X } from 'lucide-react'; import { Widget } from '@@/Widget'; import { Button } from '@@/buttons/Button'; import { FallbackImage } from '@@/FallbackImage'; import { Icon } from '@@/Icon'; import { Chart } from '../types'; import { HelmIcon } from './HelmIcon'; type Props = { selectedChart: Chart; clearHelmChart: () => void; }; export function HelmTemplatesSelectedItem({ selectedChart, clearHelmChart, }: Props) { return (
{selectedChart.name}
{selectedChart.repo}
{selectedChart.description}
); }