@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.22 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledTvSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M19.2 18.8H4.76625C4.13625 18.8 3.6 19.3363 3.6 19.9663C3.6 20.5963 4.13625 21.2 4.76625 21.2H19.1663C19.8638 21.2 20.4 20.6638 20.4 20C20.4 19.3363 19.8638 18.8 19.2 18.8ZM22.2 2H1.8C0.80625 2 0 2.80625 0 3.8V15.8C0 16.7938 0.80625 17.6 1.8 17.6H22.2C23.1938 17.6 24 16.7938 24 15.8V3.8C24 2.80625 23.1938 2 22.2 2ZM21.6 15.2H2.4V4.4H21.6V15.2Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTvSolid);
const TvSolid = /*#__PURE__*/memo(ForwardRef);
export default TvSolid;