mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
23 lines
602 B
TypeScript
23 lines
602 B
TypeScript
const App = `import {Avatar} from "@nextui-org/react
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="flex gap-3 items-center">
|
|
<Avatar isDisabled src="https://i.pravatar.cc/150?u=a042581f4e29026024d" />
|
|
<Avatar isDisabled name="Junior" />
|
|
<Avatar isDisabled src="https://i.pravatar.cc/150?u=a042581f4e29026704d" />
|
|
<Avatar isDisabled name="Jane" />
|
|
<Avatar isDisabled src="https://i.pravatar.cc/150?u=a04258114e29026702d" />
|
|
<Avatar isDisabled name="Joe" />
|
|
</div>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|