import React from 'react' import * as RadixSelect from '@radix-ui/react-select' import classNames from 'classnames' import ArrowIcon from '~public/icons/Arrow.svg' import './index.scss' // Props interface Props { open: boolean placeholder?: string trigger?: React.ReactNode children?: React.ReactNode onClick?: () => void onChange?: (value: string) => void triggerClass?: string } const Select = React.forwardRef(function useFieldSet( props, ref ) { return ( {props.children} ) }) export default Select