UNPKG

@astraicons/react

Version:

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

20 lines 716 B
import * as React from "react"; import { forwardRef } from "react"; const KIcon = ({ 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: "M5.25 21V3a.75.75 0 0 1 1.5 0v10.952l9.678-11.436a.75.75 0 1 1 1.144.968l-5.976 7.063.018.023 7 10a.75.75 0 0 1-1.228.86l-6.791-9.7-3.845 4.543V21a.75.75 0 0 1-1.5 0" })); const ForwardRef = forwardRef(KIcon); export default ForwardRef;