@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 632 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSyringeLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m21.678 7.98-1.414 1.413-2.122-2.121-2.121 2.121 3.536 3.536-1.415 1.414-.707-.707L11.071 20H5.414l-2.12 2.121-1.415-1.414L4 18.586v-5.657l6.364-6.364-.707-.707 1.414-1.414 3.536 3.535 2.121-2.121-2.121-2.122 1.414-1.414 5.657 5.657Zm-5.657 4.242-4.243-4.243-1.414 1.414 2.121 2.122-1.414 1.414-2.121-2.122-1.414 1.415 2.121 2.121-1.414 1.414-2.121-2.121-.122.121V18h4.243l5.778-5.778Z" />
</Svg>
);
export default SvgSyringeLine;