react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 375 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFunctionFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M3 3h8v8H3V3zm0 10h8v8H3v-8zM13 3h8v8h-8V3zm0 10h8v8h-8v-8z" />
</Svg>
);
}
export default SvgFunctionFill;