2023-07-18 18:37:01 -03:00

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,
};