skip-forward
html
<i data-lucide="skip-forward"></i>
tsx
import { SkipForward } from 'lucide-react';
const App = () => {
return (
<SkipForward />
);
};
export default App;
vue
<script setup>
import { SkipForward } from 'lucide-vue-next';
</script>
<template>
<SkipForward />
</template>
svelte
<script>
import { SkipForward } from 'lucide-svelte';
</script>
<SkipForward />
tsx
import { SkipForward } from 'lucide-preact';
const App = () => {
return (
<SkipForward />
);
};
export default App;
tsx
import { SkipForward } from 'lucide-solid';
const App = () => {
return (
<SkipForward />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, SkipForward } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ SkipForward })
],
})
// app.component.html
<lucide-icon name="skip-forward"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-skip-forward"></div>