Skip to content

parking-square

parking lot • car park

Created:

v0.127.0

Last changed:

v0.127.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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