2025-08-20 04:12:49 -06:00

111 lines
2.4 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 MessageSquareCodeProps = IconProps<keyof typeof animations>;
const animations = {
default: {
group: {
initial: {
rotate: 0,
},
animate: {
transformOrigin: 'bottom left',
rotate: [0, 8, -8, 2, 0],
transition: {
ease: 'easeInOut',
duration: 0.8,
times: [0, 0.4, 0.6, 0.8, 1],
},
},
},
path1: {},
path2: {
initial: {
x: 0,
},
animate: {
x: [0, -1.5, 0.75, 0],
transition: {
ease: 'easeInOut',
duration: 0.6,
},
},
},
path3: {
initial: {
x: 0,
},
animate: {
x: [0, 1.5, -0.75, 0],
transition: {
ease: 'easeInOut',
duration: 0.6,
},
},
},
} satisfies Record<string, Variants>,
} as const;
function IconComponent({ size, ...props }: MessageSquareCodeProps) {
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"
{...props}
>
<motion.g variants={variants.group} initial="initial" animate={controls}>
<motion.path
d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
variants={variants.path1}
initial="initial"
animate={controls}
/>
<motion.path
d="M10 7.5 8 10l2 2.5"
variants={variants.path2}
initial="initial"
animate={controls}
/>
<motion.path
d="m14 7.5 2 2.5-2 2.5"
variants={variants.path3}
initial="initial"
animate={controls}
/>
</motion.g>
</motion.svg>
);
}
function MessageSquareCode(props: MessageSquareCodeProps) {
return <IconWrapper icon={IconComponent} {...props} />;
}
export {
animations,
MessageSquareCode,
MessageSquareCode as MessageSquareCodeIcon,
type MessageSquareCodeProps,
type MessageSquareCodeProps as MessageSquareCodeIconProps,
};