@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 448 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgContactsBookLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M3 2h16.005C20.107 2 21 2.898 21 3.99v16.02c0 1.099-.893 1.99-1.995 1.99H3V2Zm4 2H5v16h2V4Zm2 16h10V4H9v16Zm2-4a3 3 0 1 1 6 0h-6Zm3-4a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm8-6h2v4h-2V6Zm0 6h2v4h-2v-4Z" />
</Svg>
);
export default SvgContactsBookLine;