Skip to content

list-indent-decrease

text • tab

Created:

v0.0.0

Last changed:

v0.543.0

Contributors:

Themistoklisericfenniskarsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="list-indent-decrease"></i>');  
tsx
import { ListIndentDecrease } from 'lucide-react';

const App = () => {
  return (
    <ListIndentDecrease />
  );
};

export default App;
vue
<script setup>
import { ListIndentDecrease } from 'lucide-vue-next';
</script>

<template>
  <ListIndentDecrease />
</template>
svelte
<script>
import { ListIndentDecrease } from 'lucide-svelte';
</script>

<ListIndentDecrease />
tsx
import { ListIndentDecrease } from 'lucide-preact';

const App = () => {
  return (
    <ListIndentDecrease />
  );
};

export default App;
tsx
import { ListIndentDecrease } from 'lucide-solid';

const App = () => {
  return (
    <ListIndentDecrease />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, ListIndentDecrease } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ ListIndentDecrease })
  ],
})

// app.component.html
<lucide-icon name="list-indent-decrease"></lucide-icon>
html
<div class="icon-list-indent-decrease"></div>

See this icon in action

Bug
Feature
List
112
8
11