UNPKG

@astraicons/react

Version:

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

31 lines 1.12 kB
import * as React from "react"; import { forwardRef } from "react"; const AirplayIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M16.5 18h1a3.5 3.5 0 0 0 3.5-3.5v-7A4.5 4.5 0 0 0 16.5 3H12" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M10 21c-.36 0-.693-.182-.87-.476a.89.89 0 0 1 .013-.945l2-3.124c.18-.282.505-.455.857-.455.351 0 .677.173.858.455l2 3.125c.185.29.19.65.012.944-.177.294-.51.476-.87.476z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7.5 18h-1A3.5 3.5 0 0 1 3 14.5v-7A4.5 4.5 0 0 1 7.5 3H12" })); const ForwardRef = forwardRef(AirplayIcon); export default ForwardRef;