MCPcopy Create free account
hub / github.com/cosscom/coss / Command

Function Command

packages/ui/src/components/command.tsx:98–112  ·  view source on GitHub ↗
({
  autoHighlight = "always",
  keepHighlight = true,
  ...props
}: React.ComponentProps<typeof Autocomplete>)

Source from the content-addressed store, hash-verified

96}
97
98export function Command({
99 autoHighlight = "always",
100 keepHighlight = true,
101 ...props
102}: React.ComponentProps<typeof Autocomplete>): React.ReactElement {
103 return (
104 <Autocomplete
105 autoHighlight={autoHighlight}
106 inline
107 keepHighlight={keepHighlight}
108 open
109 {...props}
110 />
111 );
112}
113
114export function CommandInput({
115 className,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected