@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 598 B
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none">
<Path d="M0 0h24v24H0z"/>
<Path fill={color} d="M5 3.5a1.5 1.5 0 1 0 0 3h5.5V20a1.5 1.5 0 0 0 3 0V6.5H19a1.5 1.5 0 0 0 0-3z"/>
</G>
</Svg>);
});
Icon.displayName = 'TextFill';
/**
* MingCute Icon: Text Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const TextFill = Icon;