remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 606 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSyringeFill = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m21.678 7.98-1.414 1.413-2.122-2.12-2.121 2.12 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.121 1.414-1.415zm-12.02 6.363-2.83-2.828-1.414 1.414 2.829 2.828zm2.828-2.828L9.657 8.686l-1.414 1.415 2.828 2.828z" />
</Svg>
);
export default SvgSyringeFill;