@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 980 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AirplayIcon = ({
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: "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", {
d: "M3 14.5v-7A4.5 4.5 0 0 1 7.5 3h9A4.5 4.5 0 0 1 21 7.5v7a3.5 3.5 0 0 1-3.5 3.5H15l-1.335-2.005a2 2 0 0 0-3.33 0L9 18H6.5A3.5 3.5 0 0 1 3 14.5"
}));
const ForwardRef = forwardRef(AirplayIcon);
module.exports = ForwardRef;