react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 532 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgRemixiconFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M16.53 17.53L20 21H3V4h10.667v.008A7.118 7.118 0 0114.136 4c-.089.37-.136.76-.136 1.166C14 7.485 16.015 9.5 18.667 9.5a4.18 4.18 0 002.032-.538 7.003 7.003 0 01-4.17 8.567zM18.5 7.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z" />
</Svg>
);
}
export default SvgRemixiconFill;