'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 HammerProps = 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 }: HammerProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Hammer(props: HammerProps) { return ; } export { animations, Hammer, Hammer as HammerIcon, type HammerProps, type HammerProps as HammerIconProps, };