Skip to content

step-forward

arrow • next • music • right • continue

Created:

v0.139.0

Last changed:

v0.139.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="step-forward"></i>
tsx
import { StepForward } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-step-forward"></div>