@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 609 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Ruler2Fill = /* @__PURE__ */ memo(function Ruler2Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M15 21h-2v-3h-2v3H9v-2H7v2H4a1 1 0 0 1-1-1v-3h2v-2H3v-2h3v-2H3V9h2V7H3V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v9h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-3v-2h-2z"/>
</Svg>);
});
/**
* Remix Icon: Ruler 2 Fill
* @see {@link https://remixicon.com/icon/ruler-2-fill Remix Icon Docs}
*/
export { Ruler2Fill };