react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 439 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBookletFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M8 2v20H4v-4H2v-2h2v-3H2v-2h2V8H2V6h2V2h4zm12.005 0C21.107 2 22 2.898 22 3.99v16.02c0 1.099-.893 1.99-1.995 1.99H10V2h10.005z" />
</Svg>
);
}
export default SvgBookletFill;