@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
36 lines • 1.3 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const TvIcon = ({
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: "M17 6H7a4 4 0 0 0-4 4v7a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4v-7a4 4 0 0 0-4-4Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m18.5 10.495.005.005-.005.005-.005-.005zM18.5 12.495l.005.005-.005.005-.005-.005zM18.5 16.001V15",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m15 3-2.293 2.293a1 1 0 0 1-1.414 0L10 4",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M13.668 8.75H7.832A2.33 2.33 0 0 0 5.5 11.082v4.836a2.33 2.33 0 0 0 2.332 2.332h5.836A2.33 2.33 0 0 0 16 15.918v-4.836a2.33 2.33 0 0 0-2.332-2.332Z",
opacity: 0.4
}));
const ForwardRef = forwardRef(TvIcon);
module.exports = ForwardRef;