TV icon
Used to represent a television. The TV icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the TV icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { Tv24Regular, Tv24Filled } from "@fluentui/react-icons";
export function Example() {
return <Tv24Regular aria-label="TV" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tv_24_regular.svg" width="24" height="24" alt="TV"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.75 4C3.23122 4 2 5.23122 2 6.75V15.25C2 16.7688 3.23122 18 4.75 18H19.25C20.7688 18 22 16.7688 22 15.25V6.75C22 5.23122 20.7688 4 19.25 4H4.75ZM3.5 6.75C3.5 6.05964 4.05964 5.5 4.75 5.5H19.25C19.9404 5.5 20.5 6.05964 20.5 6.75V15.25C20.5 15.9404 19.9404 16.5 19.25 16.5H4.75C4.05964 16.5 3.5 15.9404 3.5 15.25V6.75ZM5.75 19.5C5.33579 19.5 5 19.8358 5 20.25C5 20.6642 5.33579 21 5.75 21H18.25C18.6642 21 19 20.6642 19 20.25C19 19.8358 18.6642 19.5 18.25 19.5H5.75Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/tv_24_regular.svg";Details
| Name | TV |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_tv_24_regular.svg |
| Filled file | ic_fluent_tv_24_filled.svg |
| React components | Tv24Regular, Tv24Filled |
| License | MIT (© Microsoft Corporation) |