@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.37 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.5 3A5.5 5.5 0 0 0 2 8.5v7A5.5 5.5 0 0 0 7.5 21h9a5.5 5.5 0 0 0 5.5-5.5v-7A5.5 5.5 0 0 0 16.5 3zm.75 4.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5zM9 16.25a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 .75-.75M7.25 11.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1 0-1.5zm8.776-3.523c-.351-.319-.85-.276-1.076-.03-.269.291-.278.758.043 1.106.229.248.69.29 1.043-.04.271-.253.302-.711-.01-1.036m1.03-1.09c-.852-.793-2.322-.92-3.21.043-.849.922-.753 2.275.044 3.14.89.964 2.32.836 3.17.039.93-.869.902-2.307.025-3.195L17.07 6.9zM12.75 13.75a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1v.75a1.75 1.75 0 0 1-1.75 1.75h-2a1.75 1.75 0 0 1-1.75-1.75zm1-2.5a2.5 2.5 0 0 0-2.5 2.5v.75a3.25 3.25 0 0 0 3.25 3.25h2a3.25 3.25 0 0 0 3.25-3.25v-.75a2.5 2.5 0 0 0-2.5-2.5z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(IdCardIcon);
export default ForwardRef;