mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat(v4): update colors * fix: sonner button * feat(shadcn): update base colors to oklch * fix: button gaps * fix: sidebar and chart * feat: update ring colors * feat(v4): neutral color and fixes * fix: fonts * chore: changeset * fix: revert utils
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import { ChartAreaDemo } from "@/components/chart-area-demo"
|
|
import { ChartBarDemo } from "@/components/chart-bar-demo"
|
|
import { ChartBarMixed } from "@/registry/new-york-v4/charts/chart-bar-mixed"
|
|
|
|
export function ChartDemo() {
|
|
return (
|
|
<div className="flex w-full max-w-screen-xl flex-col flex-wrap gap-4 *:data-[slot=card]:flex-1 md:flex-row">
|
|
<ChartAreaDemo />
|
|
<ChartBarDemo />
|
|
<ChartBarMixed />
|
|
</div>
|
|
)
|
|
}
|