Code Block

Modern

Styled code display with line numbers, syntax highlighting, copy button, and line highlighting.

app.tsx
1import { Button } from "@/components/ui/button";
2import { ShimmerButton } from "@/components/custom/shimmer-button";
3
4export default function App() {
5 return (
6 <div className="flex gap-4">
7 <Button>Standard</Button>
8 <ShimmerButton>Shimmer</ShimmerButton>
9 </div>
10 );
11}