import React from "react"; import * as DropdownMenu from "@radix-ui/react-dropdown-menu"; import ArrowIcon from "~public/icons/Arrow.svg"; import "./index.scss"; interface Props { label: string; open: boolean; numSelected: number; onOpenChange: (open: boolean) => void; children: React.ReactNode; } const SearchFilter = (props: Props) => { return ( {props.label} {props.numSelected} {props.children} ); }; export default SearchFilter;