react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 514 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPaintBrushFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4 2.997h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1m2 9h6a1 1 0 0 1 1 1v3h1v6h-4v-6h1v-2H5a1 1 0 0 1-1-1v-2h2zm11.732 1.732L19.5 11.96l1.768 1.768a2.5 2.5 0 1 1-3.536 0" />
</Svg>
);
export default SvgPaintBrushFill;