@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 927 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const BluetoothIcon = ({
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: "M11.792 18V5.245c0-.865 1.026-1.322 1.67-.743l3.344 3.01a1 1 0 0 1-.14 1.591l-4.274 2.672-5.4 3.375"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M11.792 11.511V18.7c0 .874 1.043 1.327 1.683.73l3.381-3.155a1 1 0 0 0-.138-1.57L12.392 11.9l-5.4-3.5",
opacity: 0.4
}));
const ForwardRef = forwardRef(BluetoothIcon);
export default ForwardRef;