import { ChevronUp, FileChartColumnIncreasing, Sparkles, Trash2 } from "lucide-react"; import { cn } from "@/shared/ui/cn"; import { ARTIFACT_DANGER_ICON_BUTTON_CLASS_NAME, ARTIFACT_PRIMARY_ACTION_BUTTON_CLASS_NAME } from "./artifact-view-control-styles"; import type { AnalysisArtifact, WorkbenchSurfaceMode } from "./workspace-model"; export function ArtifactPeekBar({ artifact, surfaceMode, onOpen, onDestroy }: { artifact: AnalysisArtifact; surfaceMode: WorkbenchSurfaceMode; onOpen: () => void; onDestroy: () => void; }) { return ( ); }