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