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 SvgStackshareLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M9.537 13H7.33a3.001 3.001 0 0 1-5.829-1 3 3 0 0 1 5.83-1h2.206l3.464-6h3.17a3.001 3.001 0 0 1 5.83 1 3 3 0 0 1-5.829 1h-2.017l-2.886 4.999L14.156 17h2.016A3.001 3.001 0 0 1 22 18a3 3 0 0 1-5.829 1h-3.171zm9.464 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-14.5-6a1 1 0 1 0 0 2 1 1 0 0 0 0-2m14.5-6a1 1 0 1 0 0 2 1 1 0 0 0 0-2" />
</Svg>
);
export default SvgStackshareLine;