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

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