@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.07 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SmartTv2Icon = ({
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: "M12 19.25c1.888 0 3.817.346 5.326 1.074a.75.75 0 0 1-.652 1.35c-1.252-.603-2.943-.924-4.674-.924s-3.422.32-4.674.925a.75.75 0 1 1-.652-1.35c1.51-.73 3.438-1.075 5.326-1.075m5-17A4.75 4.75 0 0 1 21.75 7v6A4.75 4.75 0 0 1 17 17.75H7A4.75 4.75 0 0 1 2.25 13V7A4.75 4.75 0 0 1 7 2.25zm-10.8 4a.75.75 0 0 0 0 1.5H7.78V14a.75.75 0 0 0 1.5 0V7.75h1.585a.75.75 0 0 0 0-1.5zm11.569.038a.75.75 0 0 0-.95.475l-1.622 4.865-1.62-4.865a.75.75 0 0 0-1.424.474l2.333 7a.75.75 0 0 0 1.423 0l2.333-7a.75.75 0 0 0-.473-.949"
}));
const ForwardRef = forwardRef(SmartTv2Icon);
export default ForwardRef;