diff --git a/src/components/form-field/listbox/listbox-button.tsx b/src/components/form-field/listbox/listbox-button.tsx index 55c431e6..08486285 100644 --- a/src/components/form-field/listbox/listbox-button.tsx +++ b/src/components/form-field/listbox/listbox-button.tsx @@ -3,15 +3,25 @@ import React from "react"; import { CaretDownIcon } from "../../../icons"; import { ListboxButtonBadgeValue } from "./listbox-button-badge-value"; import { ListboxButtonTextValue } from "./listbox-button-text-value"; +import { classNames } from "../../../util/class-names"; export interface ListboxButtonProps { children: React.ReactNode; + disabled?: boolean; } -const ListboxButton = ({ children }: ListboxButtonProps) => { +const ListboxButton = ({ children, disabled }: ListboxButtonProps) => { return ( - + {children} +
), }; + +export const Disabled: Story = { + render: () => ( +
+ +
+ ), +};