Skip to content

cuboid

brick • block • container • storage • geometry • rectangular • hexahedron

Created:

v0.280.0

Last changed:

v0.280.0

Contributors:

danielbayley
html
<i data-lucide="cuboid"></i>
tsx
import { Cuboid } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="cuboid"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-cuboid"></div>