mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
24 lines
626 B
TypeScript
24 lines
626 B
TypeScript
const App = `import { Chip } from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="flex gap-4">
|
|
<Chip color="warning" variant="solid">Solid</Chip>
|
|
<Chip color="warning" variant="bordered">Bordered</Chip>
|
|
<Chip color="warning" variant="light">Light</Chip>
|
|
<Chip color="warning" variant="flat">Flat</Chip>
|
|
<Chip color="warning" variant="faded">Faded</Chip>
|
|
<Chip color="warning" variant="shadow">Shadow</Chip>
|
|
<Chip color="warning" variant="dot">Dot</Chip>
|
|
</div>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|