import { Eye } from 'lucide-react'; import { Icon } from '@@/Icon'; import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTrigger, } from '@@/Sheet'; import { HelmRelease } from '../types'; import { HelmRevisionList } from './HelmRevisionList'; export function HelmRevisionListSheet({ currentRevision, history, }: { currentRevision: number | undefined; history: HelmRelease[] | undefined; }) { return ( View revisions
View the history of this Helm application.
); }