2
0
Files
bot/apps/builder/src/features/blocks/bubbles/textBubble/components/TextBubbleIcon.tsx
2024-08-28 18:10:49 +02:00

7 lines
191 B
TypeScript

import { ChatIcon } from '@/components/icons'
import { IconProps } from '@chakra-ui/react'
export const TextBubbleIcon = (props: IconProps) => (
<ChatIcon color="blue.500" {...props} />
)