Fortura/apps/www/public/r/message-square-dashed-icon.json
2025-08-20 04:12:49 -06:00

29 lines
4.3 KiB
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "message-square-dashed-icon",
"type": "registry:ui",
"title": "Message Square Dashed Icon",
"description": "Message square dashed icon component.",
"dependencies": [
"motion"
],
"files": [
{
"path": "registry/icons/message-square-dashed/index.tsx",
"content": "'use client';\n\nimport * as React from 'react';\nimport { motion, type Variants } from 'motion/react';\n\nimport {\n getVariants,\n useAnimateIconContext,\n IconWrapper,\n type IconProps,\n} from '@/components/animate-ui/icons/icon';\n\ntype MessageSquareDashedProps = IconProps<keyof typeof animations>;\n\nconst animations = {\n default: {\n group: {\n initial: {\n rotate: 0,\n },\n animate: {\n transformOrigin: 'bottom left',\n rotate: [0, 8, -8, 2, 0],\n transition: {\n ease: 'easeInOut',\n duration: 0.8,\n times: [0, 0.4, 0.6, 0.8, 1],\n },\n },\n },\n path1: {},\n path2: {},\n path3: {},\n path4: {},\n path5: {},\n path6: {},\n path7: {},\n path8: {},\n path9: {},\n } satisfies Record<string, Variants>,\n draw: {\n group: {},\n ...(() => {\n const paths: Record<string, Variants> = {};\n\n for (let i = 1; i <= 9; i++) {\n paths[`path${i}`] = {\n initial: { opacity: 0, scale: 0 },\n animate: {\n opacity: [0, 1],\n scale: [0, 1],\n transition: {\n delay: i * 0.2,\n duration: 0.4,\n },\n },\n };\n }\n\n return paths;\n })(),\n },\n} as const;\n\nfunction IconComponent({ size, ...props }: MessageSquareDashedProps) {\n const { controls } = useAnimateIconContext();\n const variants = getVariants(animations);\n\n return (\n <motion.svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <motion.g variants={variants.group} initial=\"initial\" animate={controls}>\n <motion.path\n d=\"M5 3a2 2 0 0 0-2 2\"\n variants={variants.path1}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M9 3h1\"\n variants={variants.path2}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M14 3h1\"\n variants={variants.path3}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M19 3a2 2 0 0 1 2 2\"\n variants={variants.path4}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M21 9v1\"\n variants={variants.path5}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M21 14v1a2 2 0 0 1-2 2\"\n variants={variants.path6}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M14 17h1\"\n variants={variants.path7}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M10 17H7l-4 4v-7\"\n variants={variants.path8}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"M3 9v1\"\n variants={variants.path9}\n initial=\"initial\"\n animate={controls}\n />\n </motion.g>\n </motion.svg>\n );\n}\n\nfunction MessageSquareDashed(props: MessageSquareDashedProps) {\n return <IconWrapper icon={IconComponent} {...props} />;\n}\n\nexport {\n animations,\n MessageSquareDashed,\n MessageSquareDashed as MessageSquareDashedIcon,\n type MessageSquareDashedProps,\n type MessageSquareDashedProps as MessageSquareDashedIconProps,\n};\n",
"type": "registry:ui",
"target": "components/animate-ui/icons/message-square-dashed.tsx"
}
],
"meta": {
"keywords": [
"comment",
"chat",
"conversation",
"dialog",
"feedback",
"speech bubble",
"draft"
]
}
}