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

10 lines
397 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const FormatQuote = (props: IconProps) => (
<Icon {...props}>
<path d="M48 112h56a24 24 0 0 1 24 24v32a24 24 0 0 1-24 24H80a24 24 0 0 1-24-24v-56a56 56 0 0 1 56-56" fill="none" />
<path d="M128 112h56a24 24 0 0 1 24 24v32a24 24 0 0 1-24 24h-24a24 24 0 0 1-24-24v-56a56 56 0 0 1 56-56" fill="none" />
</Icon>
)