Files
metabuilder/fakemui/icons/Chat.tsx

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