{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "bot-message-square-icon", "type": "registry:ui", "title": "Bot Message Square Icon", "description": "Bot message square icon component.", "dependencies": [ "motion" ], "files": [ { "path": "registry/icons/bot-message-square/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 BotMessageSquareProps = 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 initial: {\n scaleY: 1,\n },\n animate: {\n scaleY: [1, 0.5, 1],\n transition: {\n ease: 'easeInOut',\n duration: 0.6,\n },\n },\n },\n path5: {},\n path6: {},\n } satisfies Record,\n 'look-at': {\n group: {},\n path1: {},\n path2: {},\n path3: {},\n path4: {\n initial: {\n x: 0,\n y: 0,\n },\n animate: {\n x: [0, -1.5, 1.5, 0],\n y: [0, 1.5, 1.5, 0],\n transition: {\n ease: 'easeInOut',\n duration: 1.3,\n },\n },\n },\n path5: {\n initial: {\n x: 0,\n y: 0,\n },\n animate: {\n x: [0, -1.5, 1.5, 0],\n y: [0, 1.5, 1.5, 0],\n transition: {\n ease: 'easeInOut',\n duration: 1.3,\n },\n },\n },\n path6: {},\n } satisfies Record,\n blink: {\n group: {},\n path1: {},\n path2: {},\n path3: {},\n path4: {\n initial: {\n scaleY: 1,\n },\n animate: {\n scaleY: [1, 0.5, 1],\n transition: {\n ease: 'easeInOut',\n duration: 0.6,\n },\n },\n },\n path5: {\n initial: {\n scaleY: 1,\n },\n animate: {\n scaleY: [1, 0.5, 1],\n transition: {\n ease: 'easeInOut',\n duration: 0.6,\n },\n },\n },\n path6: {},\n } satisfies Record,\n wink: {\n group: {},\n path1: {},\n path2: {},\n path3: {},\n path4: {},\n path5: {\n initial: {\n scaleY: 1,\n },\n animate: {\n scaleY: [1, 0.5, 1],\n transition: {\n ease: 'easeInOut',\n duration: 0.6,\n },\n },\n },\n path6: {},\n } satisfies Record,\n} as const;\n\nfunction IconComponent({ size, ...props }: BotMessageSquareProps) {\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\nfunction BotMessageSquare(props: BotMessageSquareProps) {\n return ;\n}\n\nexport {\n animations,\n BotMessageSquare,\n BotMessageSquare as BotMessageSquareIcon,\n type BotMessageSquareProps,\n type BotMessageSquareProps as BotMessageSquareIconProps,\n};\n", "type": "registry:ui", "target": "components/animate-ui/icons/bot-message-square.tsx" } ], "meta": { "keywords": [ "robot", "ai", "chat", "assistant" ] } }