@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 312 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDashboardFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M3 13h8V3H3v10Zm0 8h8v-6H3v6Zm10 0h8V11h-8v10Zm0-18v6h8V3h-8Z" />
</Svg>
);
export default SvgDashboardFill;