mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
24 lines
429 B
TypeScript
24 lines
429 B
TypeScript
const App = `import {Chip} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Chip
|
|
variant="shadow"
|
|
classNames={{
|
|
base: "bg-gradient-to-br from-indigo-500 to-pink-500 border border-white/50 shadow-pink-500/30",
|
|
content: "drop-shadow shadow-black text-white",
|
|
}}
|
|
>
|
|
New
|
|
</Chip>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|