import { OptionHTMLAttributes, ReactNode } from 'react'; interface Props extends OptionHTMLAttributes { children: ReactNode; } const Option = ({ children, ...rest }: Props) => { return {children}; }; export default Option;