import clsx from 'clsx'; import { CProps } from '../props'; import Overlay from './Overlay'; interface DropdownProps extends CProps.Styling { stretchLeft?: boolean children: React.ReactNode } function Dropdown({ className, stretchLeft, children, ...restProps }: DropdownProps) { return ( {children} ); } export default Dropdown;