mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
9 lines
303 B
TypeScript
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>
|
|
)
|