Files
metabuilder/icons/react/fakemui/ChatCircle.tsx
2026-03-09 22:30:41 +00:00

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>
)