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