'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 BatteryLowProps = IconProps; const animations = { default: { rect: {}, line1: {}, line2: { initial: { opacity: 1, scale: 1, }, animate: { opacity: 0, scale: 0, transition: { opacity: { duration: 0.3, ease: 'easeInOut', repeat: 1, repeatType: 'reverse', repeatDelay: 0, }, scale: { duration: 0.3, ease: 'easeInOut', repeat: 1, repeatType: 'reverse', repeatDelay: 0, }, }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: BatteryLowProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function BatteryLow(props: BatteryLowProps) { return ; } export { animations, BatteryLow, BatteryLow as BatteryLowIcon, type BatteryLowProps, type BatteryLowProps as BatteryLowIconProps, };