UNPKG

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) 552 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgStackOverflowFill = (props) => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" {...props} > <Path d="M18.001 20.003v-5.334h2v7.334h-16v-7.334h2v5.334zM7.6 14.736l.313-1.98 8.837 1.7-.113 1.586zm1.2-4.532.732-1.6 7.998 3.733-.733 1.6zm2.265-3.932 1.133-1.333 6.798 5.665-1.133 1.333zm4.332-4.132 5.265 7.064-1.4 1.067-5.264-7.065zM7.333 18.668v-2h9.33v2z" /> </Svg> ); export default SvgStackOverflowFill;