react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 388 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgBook2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21 18H6a1 1 0 1 0 0 2h15v2H6a3 3 0 0 1-3-3V4a2 2 0 0 1 2-2h16zm-5-9V7H8v2z" />
</Svg>
);
export default SvgBook2Fill;