A retro 8-bit step area chart block with hoverable data points and pixel styling.
"use client"; import ChartAreaStep from "@/components/ui/8bit-chart-area-step"; export default function Default() { return ( <div className="flex min-h-screen w-full items-center justify-center bg-background p-8 retro"> <div className="w-full max-w-3xl rounded-lg border-4 border-foreground bg-card p-6 shadow-xl"> <ChartAreaStep /> </div> </div> ); }
Part of 8bitcn — browse the full library on 21st.dev.