🎨 CommandList

Option list.

1. Import:

import { CommandList } from "superkey";

2. Use:

<CommandList>{/* Here your CommandOption */}</CommandList>

⚙️ Props:

PropDescriptionRequired
childrenInside it uses CommandOption components.
classNameEdit the default styles.-

⚙️ Interface:

export interface SharedCommandProps {
  className?: string;
}

export interface CommandListProps extends SharedCommandProps {
  children: React.ReactNode;
}