diff --git a/src/components/form-field/listbox/listbox-button.tsx b/src/components/form-field/listbox/listbox-button.tsx index e0ee9831..9fcca1f9 100644 --- a/src/components/form-field/listbox/listbox-button.tsx +++ b/src/components/form-field/listbox/listbox-button.tsx @@ -1,8 +1,8 @@ import { Listbox } from "@headlessui/react"; import React from "react"; +import { CaretDownIcon } from "../../../icons"; import { ListboxButtonBadgeValue } from "./listbox-button-badge-value"; import { ListboxButtonTextValue } from "./listbox-button-text-value"; -import { CaretDownIcon } from "../../../icons"; export interface ListboxButtonProps { children: React.ReactNode; @@ -10,7 +10,7 @@ export interface ListboxButtonProps { const ListboxButton = ({ children }: ListboxButtonProps) => { return ( - + {children}