UNPKG

@astraicons/react

Version:

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

22 lines 1.22 kB
import * as React from "react"; import { forwardRef } from "react"; const CookieIcon = ({ 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: "M19.682 7.826A1.15 1.15 0 1 1 21.447 9.3a1.15 1.15 0 0 1-1.765-1.474M16.956 3.011a1.5 1.5 0 1 1 2.303 1.923 1.5 1.5 0 0 1-2.303-1.923M12.579 2.267a9.75 9.75 0 1 0 9.055 11.23c.206-1.325-1.102-2.132-2.187-1.77l-.745.248a.25.25 0 0 1-.298-.358l.132-.238c.744-1.338-.469-2.919-1.954-2.548l-1.255.314a.25.25 0 0 1-.268-.381l.529-.793c.775-1.163-.059-2.721-1.456-2.721h-.468l.28-.618c.448-.988-.117-2.29-1.365-2.365m-1.025 5.119A2.25 2.25 0 1 0 8.67 10.84a2.25 2.25 0 0 0 2.884-3.454m3.975 7.68a1.75 1.75 0 1 0-2.243 2.686 1.75 1.75 0 0 0 2.243-2.687m-8.242 1.686a1.75 1.75 0 1 1 2.243-2.687 1.75 1.75 0 0 1-2.243 2.687", clipRule: "evenodd" })); const ForwardRef = forwardRef(CookieIcon); export default ForwardRef;