'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 SquareArrowOutDownLeftProps = IconProps; const animations = { default: { group: { initial: { x: 0, y: 0, transition: { duration: 0.4, ease: 'easeInOut' }, }, animate: { x: -2, y: 2, transition: { duration: 0.4, ease: 'easeInOut' }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, 'default-loop': { group: { initial: { x: 0, y: 0, }, animate: { x: [0, -2, 0], y: [0, 2, 0], transition: { duration: 0.8, ease: 'easeInOut' }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: SquareArrowOutDownLeftProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function SquareArrowOutDownLeft(props: SquareArrowOutDownLeftProps) { return ; } export { animations, SquareArrowOutDownLeft, SquareArrowOutDownLeft as SquareArrowOutDownLeftIcon, type SquareArrowOutDownLeftProps, type SquareArrowOutDownLeftProps as SquareArrowOutDownLeftIconProps, };