{ "$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;\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,\n draw: {\n group: {},\n ...(() => {\n const paths: Record = {};\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 \n \n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nfunction MessageSquareDashed(props: MessageSquareDashedProps) {\n return ;\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" ] } }