Skip to content

house-plus

home • living • medical • new • addition • building • residence • architecture

Created:

v0.396.0

Last changed:

v0.396.0

Contributors:

karsa-mistmerejguddas
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="house-plus"></i>');  
tsx
import { HousePlus } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-house-plus"></div>