163 lines
3.5 KiB
TypeScript
163 lines
3.5 KiB
TypeScript
'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 MoveLeftProps = IconProps<keyof typeof animations>;
|
|
|
|
const animations = {
|
|
default: {
|
|
group1: {
|
|
initial: {
|
|
x: 0,
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
animate: {
|
|
x: '-15%',
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
},
|
|
group2: {},
|
|
path1: {},
|
|
path2: {},
|
|
} satisfies Record<string, Variants>,
|
|
'default-loop': {
|
|
group1: {
|
|
initial: {
|
|
x: 0,
|
|
},
|
|
animate: {
|
|
x: [0, '-15%', 0],
|
|
transition: { ease: 'easeInOut', duration: 0.6 },
|
|
},
|
|
},
|
|
group2: {},
|
|
path1: {},
|
|
path2: {},
|
|
} satisfies Record<string, Variants>,
|
|
pointing: {
|
|
group1: {},
|
|
group2: {},
|
|
path1: {
|
|
initial: {
|
|
d: 'M2 12H22',
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
animate: {
|
|
d: 'M12 12H22',
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
},
|
|
path2: {
|
|
initial: {
|
|
d: 'M6 8L2 12L6 16',
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
animate: {
|
|
d: 'M15 8L11 12L15 16',
|
|
transition: { ease: 'easeInOut', duration: 0.3 },
|
|
},
|
|
},
|
|
} satisfies Record<string, Variants>,
|
|
'pointing-loop': {
|
|
group1: {},
|
|
group2: {},
|
|
path1: {
|
|
initial: {
|
|
d: 'M2 12H22',
|
|
},
|
|
animate: {
|
|
d: ['M2 12H22', 'M12 12H22', 'M2 12H22'],
|
|
transition: { ease: 'easeInOut', duration: 0.6 },
|
|
},
|
|
},
|
|
path2: {
|
|
initial: {
|
|
d: 'M6 8L2 12L6 16',
|
|
},
|
|
animate: {
|
|
d: ['M6 8L2 12L6 16', 'M15 8L11 12L15 16', 'M6 8L2 12L6 16'],
|
|
transition: { ease: 'easeInOut', duration: 0.6 },
|
|
},
|
|
},
|
|
} satisfies Record<string, Variants>,
|
|
out: {
|
|
group1: {},
|
|
group2: {
|
|
initial: {
|
|
x: 0,
|
|
},
|
|
animate: {
|
|
x: [0, '-150%', '150%', 0],
|
|
transition: {
|
|
default: { ease: 'easeInOut', duration: 0.8 },
|
|
x: {
|
|
ease: 'easeInOut',
|
|
duration: 0.8,
|
|
times: [0, 0.5, 0.5, 1],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
path1: {},
|
|
path2: {},
|
|
} satisfies Record<string, Variants>,
|
|
} as const;
|
|
|
|
function IconComponent({ size, ...props }: MoveLeftProps) {
|
|
const { controls } = useAnimateIconContext();
|
|
const variants = getVariants(animations);
|
|
|
|
return (
|
|
<motion.svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
variants={variants.group1}
|
|
initial="initial"
|
|
animate={controls}
|
|
{...props}
|
|
>
|
|
<motion.g variants={variants.group2} initial="initial" animate={controls}>
|
|
<motion.path
|
|
d="M2 12H22"
|
|
variants={variants.path1}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
<motion.path
|
|
d="M6 8L2 12L6 16"
|
|
variants={variants.path2}
|
|
initial="initial"
|
|
animate={controls}
|
|
/>
|
|
</motion.g>
|
|
</motion.svg>
|
|
);
|
|
}
|
|
|
|
function MoveLeft(props: MoveLeftProps) {
|
|
return <IconWrapper icon={IconComponent} {...props} />;
|
|
}
|
|
|
|
export {
|
|
animations,
|
|
MoveLeft,
|
|
MoveLeft as MoveLeftIcon,
|
|
type MoveLeftProps,
|
|
type MoveLeftProps as MoveLeftIconProps,
|
|
};
|