@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 308 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFunctionFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M3 3h8v8H3V3Zm0 10h8v8H3v-8ZM13 3h8v8h-8V3Zm0 10h8v8h-8v-8Z" />
</Svg>
);
export default SvgFunctionFill;