@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.78 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SkullIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10.107 20.58a.75.75 0 0 1-1.5 0v-.788h1.5zm2.143 0a.75.75 0 0 1-1.5 0v-.788h1.5zm2.144 0a.751.751 0 0 1-1.5 0v-.788h1.5zM11.485 3.25c4.422-.006 8.265 3.061 8.265 7.02v3.206l-.01.222a2.6 2.6 0 0 1-.589 1.413 3.2 3.2 0 0 1-1.486 1l-.926.306.001.001a.5.5 0 0 0-.204.12.3.3 0 0 0-.044.055v2.148c0 .58-.47 1.05-1.05 1.051h-1.048v-.237a.75.75 0 0 0-1.5 0v.237h-.644v-.237a.75.75 0 0 0-1.5 0v.237h-.643v-.237a.75.75 0 0 0-1.5 0v.237h-1.05c-.58 0-1.05-.47-1.05-1.05v-2.15a.3.3 0 0 0-.043-.054.5.5 0 0 0-.203-.119l-.925-.307a3.2 3.2 0 0 1-1.487-1 2.6 2.6 0 0 1-.59-1.413l-.009-.222v-3.26c0-3.969 3.823-6.96 8.235-6.967m.015 10.34a.75.75 0 0 0-.57.262l-.056.076-1.071 1.624a.75.75 0 0 0 .626 1.163h2.142a.751.751 0 0 0 .626-1.163l-1.071-1.624a.75.75 0 0 0-.626-.337m-3-5.319c-.32 0-.633.113-.903.262a3.4 3.4 0 0 0-.764.588c-.43.437-.833 1.065-.833 1.68 0 .618.407 1.233.84 1.657s1.053.813 1.66.813c1.11 0 2-.908 2-2.017 0-.52-.198-1.22-.497-1.788a3 3 0 0 0-.578-.79c-.232-.216-.546-.405-.925-.405m6 0c-.38 0-.693.189-.925.405a3 3 0 0 0-.578.79c-.299.568-.497 1.269-.497 1.788 0 1.109.89 2.018 2 2.018.607 0 1.227-.39 1.66-.814s.84-1.039.84-1.657c0-.615-.403-1.243-.833-1.68a3.4 3.4 0 0 0-.764-.588c-.27-.149-.583-.262-.903-.262"
}));
const ForwardRef = forwardRef(SkullIcon);
export default ForwardRef;