@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 310 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCornerDownLeftFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M19 14V5h-2v7H9.414V6.586L3 13l6.414 6.414V14H19Z" />
</Svg>
);
export default SvgCornerDownLeftFill;