@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.24 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CakeIcon = ({
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", {
d: "M20 15.224v-4.948A3.276 3.276 0 0 0 16.724 7H7.43A3.43 3.43 0 0 0 4 10.429v4.795"
}), /*#__PURE__*/React.createElement("path", {
d: "M20 18v-7.724A3.276 3.276 0 0 0 16.724 7H7.43A3.43 3.43 0 0 0 4 10.429V18m15.5 0a1.5 1.5 0 0 1 0 3h-15a1.5 1.5 0 0 1 0-3zM8 7V4a1 1 0 0 0-2 0v3M13 7V4a1 1 0 1 0-2 0v3M18 7V4a1 1 0 1 0-2 0v3",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "M20 9.725a.81.81 0 0 0-.724.447l-.276.553a1.118 1.118 0 0 1-2 0 1.118 1.118 0 0 0-2 0 1.118 1.118 0 0 1-2 0 1.118 1.118 0 0 0-2 0 1.118 1.118 0 0 1-2 0 1.118 1.118 0 0 0-2 0 1.118 1.118 0 0 1-2 0l-.276-.553A.81.81 0 0 0 4 9.725",
opacity: 0.4
}));
const ForwardRef = forwardRef(CakeIcon);
module.exports = ForwardRef;