@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 613 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const BarricadeFill = /* @__PURE__ */ memo(function BarricadeFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M19.556 19H21v2H3v-2h1.444l.89-4h13.333zM17.333 9l.89 4H5.777l.889-4zm-.444-2H7.11l.715-3.217A1 1 0 0 1 8.802 3h6.396a1 1 0 0 1 .976.783z"/>
</Svg>);
});
/**
* Remix Icon: Barricade Fill
* @see {@link https://remixicon.com/icon/barricade-fill Remix Icon Docs}
*/
export { BarricadeFill };