@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 427 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCursorLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m15.387 13.498 2.553 7.014-4.698 1.71-2.553-7.014-3.899 2.445 1.619-16.02 11.537 11.232-4.559.633Zm-.01 5.819-2.715-7.46 2.96-.411-5.64-5.49-.791 7.83 2.531-1.587 2.715 7.46.94-.342Z" />
</Svg>
);
export default SvgCursorLine;