@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 584 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M8 11h4.5a2.5 2.5 0 0 0 0-5H8zm10 4.5a4.5 4.5 0 0 1-4.5 4.5H6V4h6.5a4.5 4.5 0 0 1 3.256 7.606A4.5 4.5 0 0 1 18 15.5M8 13v5h5.5a2.5 2.5 0 0 0 0-5z"/>
</Svg>);
});
Icon.displayName = 'Bold';
/**
* Remix Icon: Bold
* @see {@link https://remixicon.com/icon/bold Remix Icon Docs}
*/
export const Bold = Icon;