@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 448 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" viewBox="0 0 24 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-1Zm2 9h6a1 1 0 0 1 1 1v3h1v6h-4v-6h1v-2H5a1 1 0 0 1-1-1v-2h2v1Zm11.732 1.732L19.5 11.96l1.768 1.768a2.5 2.5 0 1 1-3.536 0Z" />
</Svg>
);
export default SvgPaintBrushFill;