first
This commit is contained in:
commit
0738070ce1
287 changed files with 10116 additions and 0 deletions
40
src/lib/components/ui/command/index.js
Normal file
40
src/lib/components/ui/command/index.js
Normal file
|
@ -0,0 +1,40 @@
|
|||
import { Command as CommandPrimitive } from "bits-ui";
|
||||
|
||||
import Dialog from "./command-dialog.svelte";
|
||||
import Empty from "./command-empty.svelte";
|
||||
import Group from "./command-group.svelte";
|
||||
import Input from "./command-input.svelte";
|
||||
import Item from "./command-item.svelte";
|
||||
import LinkItem from "./command-link-item.svelte";
|
||||
import List from "./command-list.svelte";
|
||||
import Separator from "./command-separator.svelte";
|
||||
import Shortcut from "./command-shortcut.svelte";
|
||||
import Root from "./command.svelte";
|
||||
|
||||
const Loading = CommandPrimitive.Loading;
|
||||
|
||||
export {
|
||||
//
|
||||
Root as Command,
|
||||
Dialog as CommandDialog,
|
||||
Empty as CommandEmpty,
|
||||
Group as CommandGroup,
|
||||
Input as CommandInput,
|
||||
Item as CommandItem,
|
||||
LinkItem as CommandLinkItem,
|
||||
List as CommandList,
|
||||
Loading as CommandLoading,
|
||||
Separator as CommandSeparator,
|
||||
Shortcut as CommandShortcut,
|
||||
Dialog,
|
||||
Empty,
|
||||
Group,
|
||||
Input,
|
||||
Item,
|
||||
LinkItem,
|
||||
List,
|
||||
Loading,
|
||||
Root,
|
||||
Separator,
|
||||
Shortcut,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue