mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Chat = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M216 48H40a8 8 0 0 0-8 8v128a8 8 0 0 0 8 8h56v40l64-40h56a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8Z" />
|
|
</Icon>
|
|
)
|