import type { Meta, StoryObj } from '@storybook/react';
import { CommandSeparator } from 'cmdk';
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from '@konobangu/design-system/components/ui/command';
/**
* Fast, composable, unstyled command menu for React.
*/
const meta = {
title: 'ui/Command',
component: Command,
tags: ['autodocs'],
argTypes: {},
args: {
className: 'rounded-lg w-96 border shadow-md',
},
render: (args) => (
No results found.
Calendar
Search Emoji
Calculator
Profile
Billing
Settings
),
parameters: {
layout: 'centered',
},
} satisfies Meta;
export default meta;
type Story = StoryObj;
/**
* The default form of the command.
*/
export const Default: Story = {};