feat: add campaign configuration controls

This commit is contained in:
2026-06-04 14:45:47 +02:00
parent 07841aea0f
commit 585c4eeb2a
24 changed files with 2941 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
import * as React from "react";
import { Separator as SeparatorPrimitive } from "radix-ui";
const Separator = React.forwardRef<
React.ElementRef<typeof SeparatorPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>
>(({ className, ...props }, ref) => (
<SeparatorPrimitive.Root
ref={ref}
className={className}
decorative
{...props}
/>
));
Separator.displayName = "Separator";
export { Separator };