0.3.3 • Published 6 months ago
@butter-js/ui v0.3.3
Why Butter?
This catalog is designed to help you create attractive and enjoyable interfaces in Astro. Impress your users and clients with smooth interactions and amazing design
Installation
npm install @butter-js/ui@latestLooking for help? You can start with the installation guide
Looking for more examples? You can check out more components
Documentation
Visit the official documentation
Basic Usage
---
import { AvatarList, type AvatarItem } from "@butter-js/ui";
const example: AvatarItem[] = [
{
name: "Three.js",
src: "https://pbs.twimg.com/profile_images/1510259524271173638/lgTEVmRi_400x400.jpg",
alt: "Three.js Logo",
},
{
name: "Midudev",
src: "https://pbs.twimg.com/profile_images/1824773087323111424/-S3LUmjQ_400x400.jpg",
alt: "Midudev Logo",
},
];
---
<AvatarList data={example} />