'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 SquareArrowOutUpRightProps = 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 }: SquareArrowOutUpRightProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function SquareArrowOutUpRight(props: SquareArrowOutUpRightProps) { return ; } export { animations, SquareArrowOutUpRight, SquareArrowOutUpRight as SquareArrowOutUpRightIcon, type SquareArrowOutUpRightProps, type SquareArrowOutUpRightProps as SquareArrowOutUpRightIconProps, };