'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 BatteryChargingProps = IconProps; const animations = { default: { path3: { initial: { opacity: 1, scale: 1, }, animate: { opacity: [1, 0.5, 1, 0.5, 1], scale: [1, 0.9, 1, 0.9, 1], transition: { duration: 1.8, ease: 'easeInOut', }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: BatteryChargingProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function BatteryCharging(props: BatteryChargingProps) { return ; } export { animations, BatteryCharging, BatteryCharging as BatteryChargingIcon, type BatteryChargingProps, type BatteryChargingProps as BatteryChargingIconProps, };