UNPKG

@astraicons/react

Version:

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

20 lines 1.19 kB
import * as React from "react"; import { forwardRef } from "react"; const CandlesIcon = ({ 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", { d: "M4.472 2.266c.405 0 .734.328.734.734v3.268c.903.048 1.62.796 1.62 1.711v2.042c0 .89-.678 1.621-1.546 1.705V15.5a.734.734 0 1 1-1.468 0v-3.774a1.714 1.714 0 0 1-1.546-1.705V7.979c0-.864.64-1.579 1.471-1.696V3c0-.406.33-.734.735-.734M12.337 7a.734.734 0 0 0-1.469 0v2.642c-.85.1-1.51.824-1.51 1.701v5.386c0 .89.678 1.621 1.545 1.705V21a.734.734 0 0 0 1.47 0v-2.566a1.714 1.714 0 0 0 1.545-1.705v-5.386c0-.902-.696-1.64-1.581-1.708zM19.429 3a.734.734 0 0 0-1.469 0v3.215c-.85.1-1.51.824-1.51 1.702v5.604c0 .89.678 1.622 1.547 1.705V18a.734.734 0 1 0 1.468 0v-2.774a1.714 1.714 0 0 0 1.545-1.705V7.917c0-.902-.697-1.641-1.581-1.709z" })); const ForwardRef = forwardRef(CandlesIcon); export default ForwardRef;