react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 428 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgListCheck2(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M11 4h10v2H11V4zm0 4h6v2h-6V8zm0 6h10v2H11v-2zm0 4h6v2h-6v-2zM3 4h6v6H3V4zm2 2v2h2V6H5zm-2 8h6v6H3v-6zm2 2v2h2v-2H5z" />
</Svg>
);
}
export default SvgListCheck2;