@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
36 lines • 1.21 kB
JavaScript
import * as React from "react";
function IdCardIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("rect", {
width: 20,
height: 18,
x: 2,
y: 3,
rx: 5.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8.25 8.25h-2.5M8.25 16.25h-2.5M7.25 12.25h-1.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M16.549 7.439c.602.606.602 1.56 0 2.122-.602.563-1.549.607-2.108 0-.559-.606-.602-1.516-.043-2.122.56-.607 1.549-.563 2.15 0"
}), /*#__PURE__*/React.createElement("path", {
d: "M12 13.75c0-.966.784-1.75 1.75-1.75h3.5c.966 0 1.75.784 1.75 1.75v.75a2.5 2.5 0 0 1-2.5 2.5h-2a2.5 2.5 0 0 1-2.5-2.5z"
}));
}
const ForwardRef = React.forwardRef(IdCardIcon);
export default ForwardRef;