@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 361 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgListCheck2 = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M11 4h10v2H11V4Zm0 4h6v2h-6V8Zm0 6h10v2H11v-2Zm0 4h6v2h-6v-2ZM3 4h6v6H3V4Zm2 2v2h2V6H5Zm-2 8h6v6H3v-6Zm2 2v2h2v-2H5Z" />
</Svg>
);
export default SvgListCheck2;