@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 332 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgListCheck = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M8 4h13v2H8V4Zm-5-.5h3v3H3v-3Zm0 7h3v3H3v-3Zm0 7h3v3H3v-3ZM8 11h13v2H8v-2Zm0 7h13v2H8v-2Z" />
</Svg>
);
export default SvgListCheck;