From 1afaac060b5d025ae96eb51d10fdc7e4035c2d7d Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Sun, 29 Dec 2024 05:08:46 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20added=20some=20effects?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/download/SuggestedMirror.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/download/SuggestedMirror.tsx b/src/components/download/SuggestedMirror.tsx index 8c86b53d..24d662ac 100644 --- a/src/components/download/SuggestedMirror.tsx +++ b/src/components/download/SuggestedMirror.tsx @@ -1,6 +1,7 @@ import { MapPin, Download } from 'lucide-react'; import { type Mirror } from '../../types/download'; import { type UserLocation } from '../../lib/location'; +import { motion } from 'framer-motion'; interface SuggestedMirrorProps { mirror: Mirror; @@ -23,13 +24,15 @@ export function SuggestedMirror({ mirror, userLocation, onSelect }: SuggestedMir

{mirror.name}

{mirror.location}

- + );