import { ChatIcon } from '@/components/icons'
import { IconProps } from '@chakra-ui/react'
import React from 'react'

export const TextBubbleIcon = (props: IconProps) => (
  <ChatIcon color="blue.500" {...props} />
)
