@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.27 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",
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: "M15.53 3.53a.75.75 0 0 0-1.06-1.06l-2.293 2.293a.25.25 0 0 1-.354 0L10.53 3.47a.75.75 0 1 0-1.06 1.06l.72.72H7A4.75 4.75 0 0 0 2.25 10v7A4.75 4.75 0 0 0 7 21.75h10A4.75 4.75 0 0 0 21.75 17v-7A4.75 4.75 0 0 0 17 5.25h-3.19zm3.5 6.435a.75.75 0 0 0-1.06 0l-.005.005a.75.75 0 0 0 0 1.06l.005.005a.75.75 0 0 0 1.06 0l.005-.005a.75.75 0 0 0 0-1.06zm-1.06 2a.75.75 0 0 1 1.06 0l.005.005a.75.75 0 0 1 0 1.06l-.005.005a.75.75 0 0 1-1.06 0l-.005-.005a.75.75 0 0 1 0-1.06zM19.25 16V15a.75.75 0 0 0-1.5 0v1.001a.75.75 0 0 0 1.5 0m-14.462-4.92a3.044 3.044 0 0 1 3.044-3.043h5.836a3.044 3.044 0 0 1 3.044 3.044v4.836a3.044 3.044 0 0 1-3.044 3.044H7.832a3.044 3.044 0 0 1-3.044-3.044z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(TvIcon);
module.exports = ForwardRef;