diff --git a/libs/remix-ui/helper/src/lib/components/custom-dropdown.tsx b/libs/remix-ui/helper/src/lib/components/custom-dropdown.tsx index b5b12c92da..5e7993129d 100644 --- a/libs/remix-ui/helper/src/lib/components/custom-dropdown.tsx +++ b/libs/remix-ui/helper/src/lib/components/custom-dropdown.tsx @@ -1,6 +1,6 @@ // The forwardRef is important!! -import React, { Ref, SyntheticEvent } from "react" +import React, { Ref } from "react" // Dropdown needs access to the DOM node in order to position the Menu export const CustomToggle = React.forwardRef(({ children, onClick, icon, className = '' }: { children: React.ReactNode, onClick: (e) => void, icon: string, className: string }, ref: Ref) => (