import { FolderSearch, Plus, Layers } from 'lucide-react'; import { Button } from '@/components/ui/button'; export interface EmptyStackStateProps { // Open the create dialog on a given starting mode. Provided only when the // user has permission to create stacks; otherwise the buttons are hidden. onOpenCreate?: (mode: 'import' | 'empty') => void; } export function EmptyStackState({ onOpenCreate }: EmptyStackStateProps) { return (

No stacks yet

Import compose files you already have, or create one from scratch.

{onOpenCreate && (
)}
); }