{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "message-circle-more-icon", "type": "registry:ui", "title": "Message Circle More Icon", "description": "Message circle more icon component.", "dependencies": [ "motion" ], "files": [ { "path": "registry/icons/message-circle-more/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 MessageCircleMoreProps = 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 path: {},\n line1: {\n initial: {\n y1: 12,\n y2: 12,\n },\n animate: {\n y1: [12, 10.5, 12],\n y2: [12, 13.5, 12],\n transition: { ease: 'easeInOut', duration: 0.6, delay: 0.2 },\n },\n },\n line2: {\n initial: {\n y1: 12,\n y2: 12,\n },\n animate: {\n y1: [12, 10.5, 12],\n y2: [12, 13.5, 12],\n transition: { ease: 'easeInOut', duration: 0.6, delay: 0.1 },\n },\n },\n line3: {\n initial: {\n y1: 12,\n y2: 12,\n },\n animate: {\n y1: [12, 10.5, 12],\n y2: [12, 13.5, 12],\n transition: { ease: 'easeInOut', duration: 0.6 },\n },\n },\n } satisfies Record,\n pulse: {\n group: {},\n path: {},\n line1: {\n initial: {\n scale: 1,\n },\n animate: {\n scale: [1, 1.5, 1],\n transition: {\n duration: 1,\n delay: 0.4,\n repeat: Infinity,\n ease: 'easeInOut',\n },\n },\n },\n line2: {\n initial: {\n scale: 1,\n },\n animate: {\n scale: [1, 1.5, 1],\n transition: {\n duration: 1,\n delay: 0.2,\n repeat: Infinity,\n ease: 'easeInOut',\n },\n },\n },\n line3: {\n initial: {\n scale: 1,\n },\n animate: {\n scale: [1, 1.5, 1],\n transition: {\n duration: 1,\n repeat: Infinity,\n ease: 'easeInOut',\n },\n },\n },\n } satisfies Record,\n jump: {\n group: {},\n path: {},\n line1: {\n initial: {\n y: 0,\n },\n animate: {\n y: [-0.75, 0.75],\n transition: {\n duration: 0.8,\n delay: 0.4,\n repeat: Infinity,\n repeatType: 'mirror',\n ease: 'easeInOut',\n },\n },\n },\n line2: {\n initial: {\n y: 0,\n },\n animate: {\n y: [-0.75, 0.75],\n transition: {\n duration: 0.8,\n delay: 0.2,\n repeat: Infinity,\n repeatType: 'mirror',\n ease: 'easeInOut',\n },\n },\n },\n line3: {\n initial: {\n y: 0,\n },\n animate: {\n y: [-0.75, 0.75],\n transition: {\n duration: 0.8,\n repeat: Infinity,\n repeatType: 'mirror',\n ease: 'easeInOut',\n },\n },\n },\n } satisfies Record,\n} as const;\n\nfunction IconComponent({ size, ...props }: MessageCircleMoreProps) {\n const { controls } = useAnimateIconContext();\n const variants = getVariants(animations);\n\n return (\n \n \n \n \n \n \n \n \n );\n}\n\nfunction MessageCircleMore(props: MessageCircleMoreProps) {\n return ;\n}\n\nexport {\n animations,\n MessageCircleMore,\n MessageCircleMore as MessageCircleMoreIcon,\n type MessageCircleMoreProps,\n type MessageCircleMoreProps as MessageCircleMoreIconProps,\n};\n", "type": "registry:ui", "target": "components/animate-ui/icons/message-circle-more.tsx" } ], "meta": { "keywords": [ "comment", "chat", "conversation", "dialog", "feedback", "speech bubble", "typing", "writing", "responding", "ellipsis", "etc", "et cetera", "..." ] } }