react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 474 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBarricadeFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M19.556 19H21v2H3v-2h1.444l.89-4h13.333l.889 4zM17.333 9l.89 4H5.777l.889-4h10.666zm-.444-2H7.11l.715-3.217A1 1 0 018.802 3h6.396a1 1 0 01.976.783L16.889 7z" />
</Svg>
);
}
export default SvgBarricadeFill;