@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 847 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const BluetoothIcon = ({
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: "M11.042 13.228v5.195c0 1.53 1.826 2.324 2.944 1.28l3.382-3.157a1.75 1.75 0 0 0-.242-2.747l-3.435-2.227 3.373-2.108a1.75 1.75 0 0 0 .244-2.785l-3.345-3.01c-1.126-1.014-2.92-.214-2.92 1.3v4.887L7.4 7.495a.75.75 0 0 0-.816 1.259l4.314 2.795-4.303 2.69a.75.75 0 1 0 .795 1.271z"
}));
const ForwardRef = forwardRef(BluetoothIcon);
module.exports = ForwardRef;