'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 ThumbsDownProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { rotate: [0, -20, -12], transformOrigin: 'top right', transition: { duration: 0.4, ease: 'easeInOut', }, }, }, path1: {}, path2: {}, } satisfies Record, 'default-loop': { group: { initial: { rotate: 0, }, animate: { rotate: [0, -20, 5, 0], transformOrigin: 'top right', transition: { duration: 0.8, ease: 'easeInOut', }, }, }, path1: {}, path2: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: ThumbsDownProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function ThumbsDown(props: ThumbsDownProps) { return ; } export { animations, ThumbsDown, ThumbsDown as ThumbsDownIcon, type ThumbsDownProps, type ThumbsDownProps as ThumbsDownIconProps, };