@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
37 lines • 1.58 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SkullIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeMiterlimit: 10,
d: "M15.742 19.042v-2.576a.97.97 0 0 1 .265-.46c.133-.133.303-.236.496-.3l.925-.307a2.47 2.47 0 0 0 1.142-.762c.28-.343.43-.747.43-1.162V10.27c0-3.425-3.378-6.276-7.514-6.27S4 6.787 4 10.217v3.26c0 .413.15.818.43 1.161s.678.608 1.141.762l.925.307c.194.064.364.167.497.3s.224.29.265.459v2.575"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m10.428 15.965 1.071-1.624 1.072 1.624h-2.143"
}), /*#__PURE__*/React.createElement("path", {
fill: "#4e5964",
strokeLinecap: "round",
strokeMiterlimit: 10,
d: "M8.5 12.772c.828 0 1.5-.68 1.5-1.518s-.672-2.483-1.5-2.483-2 1.191-2 2.03 1.172 1.97 2 1.97ZM14.5 12.772c.828 0 2-1.133 2-1.972 0-.838-1.172-2.029-2-2.029S13 10.416 13 11.254s.672 1.518 1.5 1.518Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11.5 19.554v1.026m-2.143-1.026v1.026m4.286-1.026v1.026"
}));
const ForwardRef = forwardRef(SkullIcon);
module.exports = ForwardRef;