optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.1 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const BirthdayCakeIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "birthday, cake",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13.3 6.614a2.409 2.409 0 0 0 1.5-2.224c0-1.06-1.21-2.52-1.73-3.1-.34-.38-1-.38-1.34 0-.52.58-1.73 2.04-1.73 3.1 0 1.002.622 1.866 1.5 2.224V7.99H6.75c-2.06 0-3.73 1.52-3.73 3.4 0 1.121.594 2.115 1.51 2.734l.51 2.526.01.048c.543 2.67.846 4.158 1.96 5.112 1.14.98 2.59.98 5.23.98h.32c2.64 0 4.09 0 5.23-.98 1.117-.957 1.418-2.442 1.965-5.139l.005-.021.504-2.503c.936-.617 1.546-1.622 1.546-2.757 0-1.88-1.67-3.4-3.73-3.4H13.3V6.614Zm5.003 8.17a4.141 4.141 0 0 1-.224.006h-.01c-1.11 0-2.13-.44-2.83-1.14-.7.7-1.72 1.14-2.83 1.14s-2.13-.44-2.83-1.14c-.7.7-1.72 1.14-2.83 1.14-.085 0-.17-.003-.253-.008L6.8 16.29c.48 2.39.73 3.59 1.38 4.15.61.52 1.62.55 4.06.55h.32c2.43 0 3.45-.02 4.06-.55.65-.56.9-1.76 1.38-4.15l.303-1.506ZM6.73 9.79h11.34c1.06 0 1.93.72 1.93 1.6 0 .88-.86 1.6-1.93 1.6-.95 0-1.79-.56-1.96-1.3a.908.908 0 0 0-.87-.7h.01-.02.01a.9.9 0 0 0-.87.7c-.17.74-1.01 1.3-1.96 1.3s-1.79-.56-1.96-1.3c-.1-.41-.46-.7-.88-.7a.9.9 0 0 0-.88.7c-.17.74-1.02 1.3-1.96 1.3-1.06 0-1.93-.72-1.93-1.6 0-.88.86-1.6 1.93-1.6Zm5.67-4.8a.6.6 0 0 1-.6-.59c.02-.19.26-.61.6-1.08v.01c.33.46.58.88.6 1.07 0 .33-.27.59-.6.59Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default BirthdayCakeIcon;