'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 BrushProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, transition: { duration: 0.6, ease: 'easeInOut' }, }, animate: { rotate: [0, -6, 6, 0], transformOrigin: 'top right', transition: { duration: 0.6, ease: 'easeInOut' }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: BrushProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Brush(props: BrushProps) { return ; } export { animations, Brush, Brush as BrushIcon, type BrushProps, type BrushProps as BrushIconProps, };