'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 Volume1Props = IconProps; const animations = { default: { path1: { initial: { opacity: 1, scale: 1 }, animate: { opacity: 0, scale: 0, transition: { opacity: { duration: 0.2, ease: 'easeInOut', repeat: 1, repeatType: 'reverse', repeatDelay: 0.2, }, scale: { duration: 0.2, ease: 'easeInOut', repeat: 1, repeatType: 'reverse', repeatDelay: 0.2, }, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: Volume1Props) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Volume1(props: Volume1Props) { return ; } export { animations, Volume1, Volume1 as Volume1Icon, type Volume1Props, type Volume1Props as Volume1IconProps, };