import { Skiper4 } from "@/components/ui/theme-toggle-buttons";
const settings = { scale: 40, gap: 24, flexDirection: "row" };
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<Skiper4 scale={s.scale} gap={s.gap} flexDirection={s.flexDirection} />
</div>
);
}