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