playing-cards-fan
deck • fan • spread • hand • deal • dealt • draw • shuffle • tabletop • planning poker • scrum • agile • estimation • estimate • prompt • icebreaker • conversation • collectible • collection • trading • poker • casino • game • gambling • suit
html
<script>
import { createIcons, PlayingCardsFan } from 'lucide';
createIcons({
icons: {
PlayingCardsFan
}
});
</script>
<i data-lucide="playing-cards-fan"></i>
tsx
import { PlayingCardsFan } from 'lucide-react';
const App = () => {
return (
<PlayingCardsFan />
);
};
export default App;
vue
<script setup>
import { PlayingCardsFan } from '@lucide/vue';
</script>
<template>
<PlayingCardsFan />
</template>
svelte
<script>
import { PlayingCardsFan } from 'lucide-svelte';
</script>
<PlayingCardsFan />
tsx
import { PlayingCardsFan } from 'lucide-preact';
const App = () => {
return (
<PlayingCardsFan />
);
};
export default App;
tsx
import { PlayingCardsFan } from 'lucide-solid';
const App = () => {
return (
<PlayingCardsFan />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, PlayingCardsFan } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ PlayingCardsFan })
],
})
// app.component.html
<lucide-icon name="playing-cards-fan"></lucide-icon>
html
<div class="icon-playing-cards-fan"></div>