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) • 590 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgRemixiconLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m6.365 6 8.784 9.663.72-.283c1.685-.661 2.864-2.156 3.092-3.896q-.23.016-.46.016A6.5 6.5 0 0 1 12.077 6zM14 5a4.5 4.5 0 0 0 6.714 3.918c.186.618.286 1.271.286 1.947 0 2.891-1.822 5.365-4.4 6.377L20 21h-17V4h11.111a4.5 4.5 0 0 0-.111 1m4.5 2.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5m-13.5-.03V19h10.48z" />
</Svg>
);
export default SvgRemixiconLine;