'use client'; import * as React from 'react'; import { motion, type Variants } from 'motion/react'; import { getVariants, useAnimateIconContext, IconWrapper, type IconProps, } from '@/registry/icons/icon'; type CherryProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { rotate: [0, -12, 7, -4, 0], transformOrigin: 'top center', transition: { duration: 0.8, ease: 'easeInOut', }, }, }, path1: {}, path2: {}, path3: {}, path4: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: CherryProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Cherry(props: CherryProps) { return ; } export { animations, Cherry, Cherry as CherryIcon, type CherryProps, type CherryProps as CherryIconProps, };