'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 Layers2Props = IconProps; const animations = { default: { path1: { initial: { y: 0, }, animate: { y: 4, transition: { duration: 0.3, ease: 'easeInOut', }, }, }, path2: { initial: { y: 0, }, animate: { y: -4, transition: { duration: 0.3, ease: 'easeInOut', }, }, }, } satisfies Record, 'default-loop': { path1: { initial: { y: 0, }, animate: { y: [0, 4, 0], transition: { duration: 0.6, ease: 'easeInOut', }, }, }, path2: { initial: { y: 0, }, animate: { y: [0, -4, 0], transition: { duration: 0.6, ease: 'easeInOut', }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: Layers2Props) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Layers2(props: Layers2Props) { return ; } export { animations, Layers2, Layers2 as Layers2Icon, type Layers2Props, type Layers2Props as Layers2IconProps, };