Skip to content

floor-plan

lab

blueprint • property • real estate • house • home • dwelling • living space • rooms • doorway • area • measure • square meter

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { floorPlan } from '@lucide/lab';

createIcons({
  icons: {
    floorPlan
  }
});

document.body.append('<i data-lucide="floor-plan"></i>');  
tsx
import { Icon } from 'lucide-react';
import { floorPlan } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={floorPlan} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { floorPlan } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="floorPlan" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { floorPlan } from '@lucide/lab';
</script>

<Icon iconNode={floorPlan} />
tsx
import { Icon } from 'lucide-preact';
import { floorPlan } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={floorPlan} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { floorPlan } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={floorPlan} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { floorPlan } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="floorPlan"></lucide-icon>

See this icon in action

Bug
Feature
Floor
112
8
11