Skip to content

shuffle

music • random • reorder

Created:

v0.0.0

Last changed:

v0.206.0

Contributors:

colebemisericfennisdanielbayleykarsa-mistmere
html
<i data-lucide="shuffle"></i>
tsx
import { Shuffle } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-shuffle"></div>