@nomercyicons/react
Version:
23 lines • 826 B
JavaScript
const React = require("react");
function KeyboardCapslockRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
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", {
d: "M12 8.41l3.89 3.89a.996.996 0 101.41-1.41L12.71 6.3a.996.996 0 00-1.41 0l-4.6 4.59a.996.996 0 101.41 1.41L12 8.41zM7 18h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z"
}));
}
const ForwardRef = React.forwardRef(KeyboardCapslockRoundedIcon);
module.exports = ForwardRef;