@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.61 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const PricingAlertIcon = ({
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",
strokeLinejoin: "round",
d: "M14.002 20s-.333 1-2 1-2-1-2-1",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M17.714 8.855v-.037 0C17.714 5.605 15.155 3 12 3v0C8.845 3 6.286 5.605 6.286 8.818v2.913c0 .377-.21.72-.54.89l-.575.291A2.17 2.17 0 0 0 4 14.842v0C4 16.035 4.949 17 6.119 17H17.88c1.17 0 2.119-.966 2.119-2.157v0c0-.817-.454-1.564-1.171-1.93l-.575-.292a1 1 0 0 1-.54-.89z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19.541 5.123s1.064.228 1.244 1.885-.812 2.094-.812 2.094M4.215 5.044s-1.048.29-1.124 1.954c-.075 1.665.942 2.042.942 2.042M14.002 8.667v-.334c0-.736-.597-1.333-1.333-1.333h-1.334c-.736 0-1.333.597-1.333 1.333v.204c0 .652.471 1.208 1.114 1.315l1.772.296a1.33 1.33 0 0 1 1.114 1.315v.204c0 .736-.597 1.333-1.333 1.333h-1.334a1.333 1.333 0 0 1-1.333-1.333v-.334m2-5.333v8",
opacity: 0.4
}));
const ForwardRef = forwardRef(PricingAlertIcon);
module.exports = ForwardRef;