Skip to content

Instantly share code, notes, and snippets.

@PatrickJS
Created February 14, 2024 22:38
Show Gist options
  • Save PatrickJS/dc84bb13e428a88f236a5a9866f2fd90 to your computer and use it in GitHub Desktop.
Save PatrickJS/dc84bb13e428a88f236a5a9866f2fd90 to your computer and use it in GitHub Desktop.
<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