mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
22 lines
558 B
TypeScript
22 lines
558 B
TypeScript
const App = `import {Button} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Button
|
|
disableRipple
|
|
className="relative overflow-visible rounded-full hover:-translate-y-1 px-12 shadow-xl bg-background/30 after:content-[''] after:absolute after:rounded-full after:inset-0 after:bg-background/40 after:z-[-1] after:transition after:!duration-500 hover:after:scale-150 hover:after:opacity-0"
|
|
size="lg"
|
|
>
|
|
Press me
|
|
</Button>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|