@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.35 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 StyledTvRegular = ({
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.5 19.4H4.5C4.00125 19.4 3.6 19.8013 3.6 20.3C3.6 20.7987 4.00125 21.2 4.5 21.2H19.5C19.9969 21.2 20.4 20.7969 20.4 20.3C20.4 19.8013 19.9988 19.4 19.5 19.4ZM21.6 2H2.4C1.07438 2 0 3.07438 0 4.4V15.2C0 16.5256 1.07438 17.6 2.4 17.6H21.6C22.9256 17.6 24 16.5256 24 15.2V4.4C24 3.07438 22.9238 2 21.6 2ZM22.2 15.2C22.2 15.5308 21.9308 15.8 21.6 15.8H2.4C2.06918 15.8 1.8 15.5308 1.8 15.2V4.4C1.8 4.06918 2.06918 3.8 2.4 3.8H21.6C21.9308 3.8 22.2 4.06918 22.2 4.4V15.2Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTvRegular);
const TvRegular = /*#__PURE__*/memo(ForwardRef);
export default TvRegular;