mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 17:11:12 -05:00
Add icons to represent different types of parks
Update ParkCard component to display specific icons for theme_park and amusement_park types. Replit-Commit-Author: Agent Replit-Commit-Session-Id: f44f1d1b-1dd8-407b-8603-db12902e1a15 Replit-Commit-Checkpoint-Type: intermediate_checkpoint
This commit is contained in:
@@ -28,9 +28,9 @@ export function ParkCard({ park }: ParkCardProps) {
|
|||||||
const getParkTypeIcon = (type: string) => {
|
const getParkTypeIcon = (type: string) => {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'theme_park':
|
case 'theme_park':
|
||||||
return;
|
return <Castle className="w-5 h-5" />;
|
||||||
case 'amusement_park':
|
case 'amusement_park':
|
||||||
return;
|
return <FerrisWheel className="w-5 h-5" />;
|
||||||
case 'water_park':
|
case 'water_park':
|
||||||
return <Waves className="w-5 h-5" />;
|
return <Waves className="w-5 h-5" />;
|
||||||
case 'family_entertainment':
|
case 'family_entertainment':
|
||||||
|
|||||||
Reference in New Issue
Block a user