Skip to content

rectangle-horizontal

rectangle • aspect ratio • 16:9 • horizontal • shape

Created:

v0.85.0

Last changed:

v0.133.0

Contributors:

colebemisReund0danielbayleykarsa-mistmereericfennis
html
<i data-lucide="rectangle-horizontal"></i>
tsx
import { RectangleHorizontal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-rectangle-horizontal"></div>