Skip to content

shelving-unit

ledge • rack • storage • inventory • furniture • sill • shelves • shelf • organize • display • store • arrange • unit • cabinet • fixture • retail • warehouse

Created:

v0.571.0

Last changed:

v0.571.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, shelvingUnit } from 'lucide';

createIcons({
  icons: {
    shelvingUnit
  }
});
</script>

<i data-lucide="shelving-unit"></i>  
tsx
import { ShelvingUnit } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="shelving-unit"></lucide-icon>
html
<div class="icon-shelving-unit"></div>

See this icon in action

Bug
Feature
Shelving
112
8
11