@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
23 lines • 910 B
JavaScript
const React = require("react");
function FieldIconPhone({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M12 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M4 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5Zm3-1.5A1.5 1.5 0 0 0 5.5 5v14A1.5 1.5 0 0 0 7 20.5h10a1.5 1.5 0 0 0 1.5-1.5V5A1.5 1.5 0 0 0 17 3.5H7Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPhone);
module.exports = ForwardRef;