@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 661 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Ram2Fill = /* @__PURE__ */ memo(function Ram2Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M2 5h20a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1v2a1 1 0 0 1-1 1h-7.414l-1-1h-1.172l-1 1H3a1 1 0 0 1-1-1v-2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1m2 11v1h5.586l1-1zm9.414 0 1 1H20v-1zM7 9H5v3h2zm2 0v3h2V9zm6 0h-2v3h2zm2 0v3h2V9z"/>
</Svg>);
});
/**
* Remix Icon: Ram 2 Fill
* @see {@link https://remixicon.com/icon/ram-2-fill Remix Icon Docs}
*/
export { Ram2Fill };