mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ChatCircle = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 24a104 104 0 0 0-91.2 153.8L24 224l46.2-12.8A104 104 0 1 0 128 24Z" />
|
|
</Icon>
|
|
)
|