import clsx from 'clsx'; import { motion } from 'framer-motion'; import { animateDropdown } from '@/styling/animations'; import { CProps } from '../props'; interface DropdownProps extends CProps.Styling { stretchLeft?: boolean; stretchTop?: boolean; isOpen: boolean; children: React.ReactNode; } function Dropdown({ isOpen, stretchLeft, stretchTop, className, children, ...restProps }: DropdownProps) { return (