import { motion, type SVGMotionProps } from "motion/react"; import clsx, { type ClassValue } from "clsx"; type Props = Omit, "className"> & { className?: ClassValue; }; export default function DropIcon(props: Props) { return ( ); }