We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7a6cad + 3e588b4 commit 5a604f9Copy full SHA for 5a604f9
1 file changed
client/src/components/ui/eventHighlightCard.tsx
@@ -1,3 +1,4 @@
1
+import { Play } from "lucide-react";
2
import Image from "next/image";
3
4
export type eventHighlightCardImage = {
@@ -62,7 +63,13 @@ export function EventHighlightCard({
62
63
64
<div className="mt-4 rounded-md border border-muted bg-landingCard p-4 text-gray-200">
65
<div className="flex gap-2">
- <span>▶</span>
66
+ <span className="flex h-6 w-6 flex-shrink-0 items-center justify-center">
67
+ <Play
68
+ className="h-6 w-6 fill-accent text-accent"
69
+ aria-hidden="true"
70
+ fill="currentColor"
71
+ />
72
+ </span>
73
<p>{description}</p>
74
{image && (
75
<Image
0 commit comments