Skip to content

sofa

armchair • furniture • leisure • lounge • loveseat • couch

Created:

v0.53.0

Last changed:

v0.53.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="sofa"></i>
tsx
import { Sofa } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-sofa"></div>
dart
Icon(LucideIcons.sofa);