Skip to content

align-left

text • alignment • left • list

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemisericfennis
html
<i data-lucide="align-left"></i>
tsx
import { AlignLeft } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-align-left"></div>