react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 501 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTaskLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M19 4H5v16h14zM3 2.992C3 2.444 3.447 2 3.999 2h16a1 1 0 0 1 1 1L21 20.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008zm8.293 10.13 4.243-4.243 1.414 1.414-5.657 5.657-3.89-3.89 1.415-1.414z" />
</Svg>
);
export default SvgTaskLine;