mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 15:51:53 +02:00
23 lines
No EOL
708 B
JavaScript
23 lines
No EOL
708 B
JavaScript
const React = require("react");
|
|
|
|
function PencilIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
viewBox: "0 0 20 20",
|
|
fill: "currentColor",
|
|
"aria-hidden": "true",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
d: "M2.695 14.763l-1.262 3.154a.5.5 0 00.65.65l3.155-1.262a4 4 0 001.343-.885L17.5 5.5a2.121 2.121 0 00-3-3L3.58 13.42a4 4 0 00-.885 1.343z"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(PencilIcon);
|
|
module.exports = ForwardRef; |