UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

24 lines 1.07 kB
import * as React from "react"; import { forwardRef } from "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 18v-7.724A3.276 3.276 0 0 0 16.724 7H7.43A3.43 3.43 0 0 0 4 10.429V18M19.5 18h-15a1.5 1.5 0 0 0 0 3h15a1.5 1.5 0 0 0 0-3ZM8 7V4a1 1 0 0 0-2 0v3M13 7V4a1 1 0 1 0-2 0v3M18 7V4a1 1 0 1 0-2 0v3" }), /*#__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" })); const ForwardRef = forwardRef(CakeIcon); export default ForwardRef;