Components
Loading preview...
Here is legends component
npx shadcn@latest add https://21st.dev/r/airbnb/legends// src/components/ui/legends-chart-demo.tsx
import { LegendsChart } from "@/components/ui/legends";
const DemoLegendsChart = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100 p-4">
<LegendsChart events={true} />
</div>
);
};
export { DemoLegendsChart };