'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 MessageSquareDashedProps = IconProps; 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: {}, path3: {}, path4: {}, path5: {}, path6: {}, path7: {}, path8: {}, path9: {}, } satisfies Record, draw: { group: {}, ...(() => { const paths: Record = {}; for (let i = 1; i <= 9; i++) { paths[`path${i}`] = { initial: { opacity: 0, scale: 0 }, animate: { opacity: [0, 1], scale: [0, 1], transition: { delay: i * 0.2, duration: 0.4, }, }, }; } return paths; })(), }, } as const; function IconComponent({ size, ...props }: MessageSquareDashedProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageSquareDashed(props: MessageSquareDashedProps) { return ; } export { animations, MessageSquareDashed, MessageSquareDashed as MessageSquareDashedIcon, type MessageSquareDashedProps, type MessageSquareDashedProps as MessageSquareDashedIconProps, };