Created
February 14, 2024 22:38
-
-
Save PatrickJS/dc84bb13e428a88f236a5a9866f2fd90 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div | |
class={`flex aspect-square w-full grow flex-col items-center justify-center rounded-3xl ${ | |
props.useBorder ? 'border-4 border-gray-200' : '' | |
} p-5 max-md:mt-10 max-md:max-w-full`} | |
> | |
<Lottie | |
path={props.lottie} | |
loop={props.loop} | |
speed={props.speed} | |
/> | |
{/* <img | |
alt="Image" | |
loading="lazy" | |
src={props.img} | |
width="760" | |
height="660" | |
/> */} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment