UNPKG

@astraicons/react

Version:

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

26 lines 835 B
const React = require("react"); function PreviousIcon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M12.594 9.444c1.875 1.136 1.875 3.976 0 5.112L9.219 16.6C7.344 17.736 5 16.316 5 14.044V9.955C5 7.684 7.344 6.264 9.219 7.4z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M19 9v6" })); } const ForwardRef = React.forwardRef(PreviousIcon); module.exports = ForwardRef;