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

9 lines
303 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const FormatBold = (props: IconProps) => (
<Icon {...props}>
<path d="M64 48h80a56 56 0 0 1 56 56c0 24-15 44-36 52a56 56 0 0 1-20 108H64V48zm16 16v64h64a40 40 0 1 0 0-80H80zm0 80v80h72a40 40 0 1 0 0-80H80z" />
</Icon>
)