"use client"
import * as React from "react"
import { Command as CommandPrimitive } from "cmdk"
import { SearchIcon } from "lucide-react"
import { cn } from "@/lib/utils"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
function Command({
className,
...props
}) {
return (
);
}
function CommandDialog({
title = "Command Palette",
description = "Search for a command to run...",
children,
...props
}) {
return (
);
}
function CommandInput({
className,
...props
}) {
return (
);
}
function CommandList({
className,
...props
}) {
return (
);
}
function CommandEmpty({
...props
}) {
return ();
}
function CommandGroup({
className,
...props
}) {
return (
);
}
function CommandSeparator({
className,
...props
}) {
return (
);
}
function CommandItem({
className,
...props
}) {
return (
);
}
function CommandShortcut({
className,
...props
}) {
return (
);
}
export {
Command,
CommandDialog,
CommandInput,
CommandList,
CommandEmpty,
CommandGroup,
CommandItem,
CommandShortcut,
CommandSeparator,
}