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) 525 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgAdvertisementFill = (props) => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" {...props} > <Path d="m7.552 13 .847-2.115L9.244 13zM16 12h1v2h-1a1 1 0 1 1 0-2m5-9H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-8.402 13h-2.155l-.4-1h-3.29l-.4 1H4.199l1.199-2.998.001-.002 2-5h2zM17 8h2v8h-3a3 3 0 1 1 0-6h1z" /> </Svg> ); export default SvgAdvertisementFill;