Skip to content

list-start

queue • top • start • next • playlist

Created:

v0.62.0

Last changed:

v0.62.0

Contributors:

karsa-mistmere
html
<i data-lucide="list-start"></i>
tsx
import { ListStart } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-list-start"></div>