playing-card
deck • draw • deal • shuffle • chance • random • selection • tabletop • flashcard • study • learning • prompt • icebreaker • conversation • collectible • trading • poker • casino • game • gambling • suit
html
<script>
import { createIcons, PlayingCard } from 'lucide';
createIcons({
icons: {
PlayingCard
}
});
</script>
<i data-lucide="playing-card"></i>
tsx
import { PlayingCard } from 'lucide-react';
const App = () => {
return (
<PlayingCard />
);
};
export default App;
vue
<script setup>
import { PlayingCard } from '@lucide/vue';
</script>
<template>
<PlayingCard />
</template>
svelte
<script>
import { PlayingCard } from 'lucide-svelte';
</script>
<PlayingCard />
tsx
import { PlayingCard } from 'lucide-preact';
const App = () => {
return (
<PlayingCard />
);
};
export default App;
tsx
import { PlayingCard } from 'lucide-solid';
const App = () => {
return (
<PlayingCard />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, PlayingCard } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ PlayingCard })
],
})
// app.component.html
<lucide-icon name="playing-card"></lucide-icon>
html
<div class="icon-playing-card"></div>