Skip to content

Commit 5a604f9

Browse files
committed
Merge branch 'main' into issue-5-About_us/committee_page
2 parents e7a6cad + 3e588b4 commit 5a604f9

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

client/src/components/ui/eventHighlightCard.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Play } from "lucide-react";
12
import Image from "next/image";
23

34
export type eventHighlightCardImage = {
@@ -62,7 +63,13 @@ export function EventHighlightCard({
6263

6364
<div className="mt-4 rounded-md border border-muted bg-landingCard p-4 text-gray-200">
6465
<div className="flex gap-2">
65-
<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>
6673
<p>{description}</p>
6774
{image && (
6875
<Image

0 commit comments

Comments
 (0)