@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.74 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",
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", {
fillRule: "evenodd",
d: "M7 2.25A1.75 1.75 0 0 0 5.25 4v2.587A4.2 4.2 0 0 0 3.5 8.725c-.045.124.05.251.181.267.85.1 1.601.62 1.99 1.397a.368.368 0 0 0 .658 0c.689-1.377 2.653-1.377 3.342 0a.368.368 0 0 0 .658 0c.689-1.377 2.653-1.377 3.342 0a.368.368 0 0 0 .658 0c.689-1.377 2.653-1.377 3.342 0a.368.368 0 0 0 .658 0 2.56 2.56 0 0 1 2.03-1.402c.13-.013.227-.137.185-.261A4.04 4.04 0 0 0 18.75 6.52V4a1.75 1.75 0 1 0-3.5 0v1.974h-1.5V4a1.75 1.75 0 1 0-3.5 0v1.974h-1.5V4A1.75 1.75 0 0 0 7 2.25m.25 3.728V4a.25.25 0 0 0-.5 0v2.03q.245-.042.5-.052m4.5-.004h.5V4a.25.25 0 1 0-.5 0zm5 0q.255.003.5.034V4a.25.25 0 1 0-.5 0z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3.25 10.606c0-.073.06-.132.132-.132.401 0 .768.227.947.586.689 1.377 2.653 1.377 3.342 0a.368.368 0 0 1 .658 0c.689 1.377 2.653 1.377 3.342 0a.368.368 0 0 1 .658 0c.689 1.377 2.653 1.377 3.342 0a.368.368 0 0 1 .658 0c.689 1.377 2.653 1.377 3.342 0 .18-.359.546-.586.947-.586.073 0 .132.06.132.132v7.023a2.25 2.25 0 0 1-1.25 4.121h-15a2.25 2.25 0 0 1-1.25-4.121zm.5 8.894a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(CakeIcon);
module.exports = ForwardRef;