Skip to content

Commit

Permalink
chore: create ComboboxPopoverProps interface
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 committed Sep 3, 2024
1 parent f25bcbb commit 6961829
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/storybook-css/src/Combobox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
Combobox,
ComboboxPopoverProps,
FormField,
FormLabel,
Listbox,
Expand Down Expand Up @@ -36,7 +35,10 @@ export interface ComboboxStoryProps {
}[];
}[];
}

interface ComboboxPopoverProps {
expanded?: boolean;
position?: string;
}
const ComboboxTextbox = ({ ...restProps }) => <Textbox className="utrecht-combobox__input" {...restProps} />;

const ComboboxListboxPopover = ({
Expand Down

0 comments on commit 6961829

Please sign in to comment.