UNPKG

@nomercyicons/react

Version:
24 lines 1.18 kB
const React = require("react"); function SketchIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 53 47", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M52.087 11.043l-7.982-6.047a2.258 2.258 0 00-.603-.456L38.125.466A2.304 2.304 0 0036.737 0H16.263c-.5 0-.989.164-1.388.466L.912 11.043a2.304 2.304 0 00-.442 3.231l24.2 31.818a2.299 2.299 0 003.66 0l24.2-31.818a2.305 2.305 0 00-.443-3.231zM17.035 4.606h18.93l2.607 1.975-3.374 2.498-16.478-.13-4.16-2.468 2.475-1.875zm2.262 8.953l15.465.123 4.343 6.049H15.133l4.164-6.172zm-8.7-4.076l4.212 2.499-4.84 7.177-4.44-5.837 5.067-3.839zM26.5 40.896L13.906 24.337h25.188L26.5 40.896zm17.215-22.635l-4.575-6.372 3.256-2.412 5.075 3.845-3.756 4.939z" })); } const ForwardRef = React.forwardRef(SketchIcon); module.exports = ForwardRef;