react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 496 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgContactsBookFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M7 2v20H3V2h4zm2 0h10.005C20.107 2 21 2.898 21 3.99v16.02c0 1.099-.893 1.99-1.995 1.99H9V2zm13 4h2v4h-2V6zm0 6h2v4h-2v-4zm-7 0a2 2 0 100-4 2 2 0 000 4zm-3 4h6a3 3 0 00-6 0z" />
</Svg>
);
}
export default SvgContactsBookFill;