@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 964 B
JavaScript
import * as React from "react";
function FieldIconEducation({
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",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M22 8.5v6M6 11v6.5c0 .796.632 1.559 1.757 2.122 1.125.562 2.652.878 4.243.878 1.591 0 3.117-.316 4.242-.878C17.368 19.059 18 18.296 18 17.5V11m3.42-1.578a1 1 0 0 0-.02-1.838L12.83 3.68a2 2 0 0 0-1.66 0L2.6 7.58a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0l8.59-3.898Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconEducation);
export default ForwardRef;