@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 493 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSipLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m6.457 18.954 8.564-8.564-1.414-1.414-8.564 8.564 1.414 1.414Zm5.735-11.392-1.414-1.414 1.414-1.415 1.768 1.768 2.829-2.828a1 1 0 0 1 1.414 0l2.121 2.121a1 1 0 0 1 0 1.414l-2.828 2.829 1.768 1.768-1.415 1.414-1.414-1.414-9.192 9.192H3v-4.243l9.192-9.192Z" />
</Svg>
);
export default SvgSipLine;