mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
895 B
TypeScript
26 lines
895 B
TypeScript
const App = `import {Avatar, AvatarGroup} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<AvatarGroup isBordered isGrid max={7}>
|
|
<Avatar src="https://i.pravatar.cc/150?u=a042581f4e29026024d" />
|
|
<Avatar src="https://i.pravatar.cc/150?u=a04258a2462d826712d" />
|
|
<Avatar src="https://i.pravatar.cc/150?u=a042581f4e29026704d" />
|
|
<Avatar src="https://i.pravatar.cc/150?u=a04258114e29026302d" />
|
|
<Avatar src="https://i.pravatar.cc/150?u=a04258114e29026708c" />
|
|
<Avatar src="https://i.pravatar.cc/150?u=a04258114e29026702d" />
|
|
<Avatar src="https://i.pravatar.cc/300?u=a042581f4f29026707d" />
|
|
<Avatar src="https://i.pravatar.cc/300?u=a042581f4e29026710d" />
|
|
<Avatar src="https://i.pravatar.cc/300?u=a042581f4e29026712d" />
|
|
</AvatarGroup>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|