Lightstrip icon

Lightstrip is a Google Material Symbol from the Household category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

lightstrip_outlined_fill0_wght400.svg

Lightstrip icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=lightstrip" />

<span class="material-symbols-outlined">lightstrip</span>

Lightstrip icon in React

// With the font from the HTML tab:
export function LightstripIcon() {
  return (
    <span className="material-symbols-outlined">
      lightstrip
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import LightstripIcon from "@material-symbols/svg-400/outlined/lightstrip.svg?react";

Lightstrip icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">lightstrip</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import LightstripIcon from "@material-symbols/svg-400/outlined/lightstrip.svg?component"; -->

Lightstrip icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">lightstrip</mat-icon>

Lightstrip icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.lightstrip, fill: 0, weight: 400)

Lightstrip icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/lightstrip.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M4.775 22q-1.15 0-1.962-.812T2 19.2v-5.125q0-.75 .463-1.337T3.625 11.875l8.325-3.225H2v-6.65h17.175q1.175 0 2 .813t.825 1.987v5.75q0 .875-.5 1.613T20.175 13.2l-5.975 2.175h7.8v6.625H4.775Zm0-1.5h15.725v-3.625H4.775q-.35 0-.662-.075t-.613-.225v2.625q0 .55 .375 .925t.9 .375Zm15.725-13.075v-2.625q0-.55-.387-.925T19.175 3.5H3.5v3.65h15.675q.35 0 .688 .063T20.5 7.425ZM4.775 15.375h5l9.85-3.575q.4-.15 .638-.475t.237-.75v-.625q0-.55-.387-.925T19.175 8.65H16.1L4.15 13.275q-.275 .125-.462 .338T3.5 14.1v.075q0 .5 .375 .85t.9 .35Zm1.45-9.7q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm.025 13.35q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm1.025-4.9q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm4.375-8.475q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm0 6.95q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm0 6.425q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm4.1-7.975q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm1.3-5.4q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Zm0 13.375q-.15-.15-.15-.35t.15-.35q.15-.15 .35-.15t.35 .15q.15 .15 .15 .35t-.15 .35q-.15 .15-.35 .15t-.35-.15Z" />
</vector>

Lightstrip icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/lightstrip.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/lightstrip.svg" width="24" height="24" alt="Lightstrip">

Lightstrip icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameLightstrip
Ligaturelightstrip
Code pointU+FFF75
CategoryHousehold
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/lightstrip.svg, lightstrip-fill.svg
FlutterSymbols.lightstrip
LicenseApache License 2.0 (© Google LLC)

Keywords

householdhomesettinghorizontalenergyelectronicgroupsmart homelightapplianceelectricityroombrightness

Related icons