UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

24 lines 819 B
const React = require("react"); function FieldIconEnglish({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.8, d: "M10 7H6.5a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5H10m-3.5-5H10m3 5v-7m5 7V12c0-3-5-3-5 0M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconEnglish); module.exports = ForwardRef;