UNPKG

@astraicons/react

Version:

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

20 lines 767 B
import * as React from "react"; import { forwardRef } from "react"; const WIcon = ({ 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: "M21.273 2.818a.75.75 0 1 1 1.455.364l-4.495 18a.75.75 0 0 1-1.444.04L11.987 5.698 7 21.23a.75.75 0 0 1-1.443-.054L1.271 3.38a.75.75 0 0 1 1.459-.352l3.66 15.197 4.897-15.25.045-.113a.75.75 0 0 1 1.385.12l4.711 15.23z" })); const ForwardRef = forwardRef(WIcon); export default ForwardRef;