Skip to content

land-plot

area • surface • square metres • allotment • parcel • property • plane • acres • measure • distance • isometric • flag • golf course • hole

Created:

v0.280.0

Last changed:

v0.280.0

Contributors:

danielbayley
html
<i data-lucide="land-plot"></i>
tsx
import { LandPlot } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-land-plot"></div>