styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.26 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Brush = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M20.177 3.823a1.997 1.997 0 00-2.159-.442c-4.449 1.787-7.792 4.76-10.517 9.357a1.962 1.962 0 00-.209.542c-1.38.215-2.6.903-3.442 1.993-.916 1.185-1.295 2.695-1.066 4.254L3 21l1.473.217c.293.043.589.064.88.064 2.743 0 4.949-1.909 5.367-4.564a2 2 0 00.544-.218c4.598-2.728 7.571-6.069 9.355-10.517a2.003 2.003 0 00-.442-2.159zM5.353 19.281c-.192 0-.389-.016-.59-.044-.309-2.104 1.055-3.81 3-4.021l1.021 1.021c-.192 1.76-1.605 3.044-3.431 3.044zm4.89-4.502l-1.021-1.021c.38-.641.774-1.233 1.178-1.804.027.041 1.639 1.653 1.639 1.653-.568.401-1.158.794-1.796 1.172zm2.608-1.773s-1.821-1.801-1.879-1.824c2.147-2.784 4.651-4.685 7.791-5.943-1.255 3.127-3.144 5.623-5.912 7.767z", key: "k0" })));
});
Brush.displayName = 'Brush';
export var BrushDimensions = { height: 24, width: 24 };