7 lines
191 B
TypeScript
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} />
|
|
)
|