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