'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 GavelProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { transformOrigin: 'bottom left', rotate: [0, 30, -5, 0], }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: GavelProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Gavel(props: GavelProps) { return ; } export { animations, Gavel, Gavel as GavelIcon, type GavelProps, type GavelProps as GavelIconProps, };