Components
Loading preview...
Streamgraph animated component
npx shadcn@latest add https://21st.dev/r/airbnb/streamgraph
import { Streamgraph } from "@/components/ui/streamgraph";
const DemoStreamgraph = () => {
const width = 1000;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-50">
<Streamgraph width={width} height={height} animate={true} />
</div>
);
};
export { DemoStreamgraph };