diff options
Diffstat (limited to 'cmd/mirum-server/web/components/ui/separator.tsx')
| -rw-r--r-- | cmd/mirum-server/web/components/ui/separator.tsx | 15 | +8 −7 |
1 files changed, 8 insertions, 7 deletions
diff --git a/cmd/mirum-server/web/components/ui/separator.tsx b/cmd/mirum-server/web/components/ui/separator.tsx index 3a5b378..3c2a347 100644 --- a/cmd/mirum-server/web/components/ui/separator.tsx +++ b/cmd/mirum-server/web/components/ui/separator.tsx @@ -1,10 +1,11 @@ -// SPDX-FileCopyrightText: 2023 shadcn +// Copyright (c) 2023 shadcn // SPDX-License-Identifier: MIT +"use client" -import * as React from "react"; -import { Separator as SeparatorPrimitive } from "radix-ui"; +import * as React from "react" +import { Separator as SeparatorPrimitive } from "radix-ui" -import { cn } from "@/lib/utils"; +import { cn } from "@/lib/utils" function Separator({ className, @@ -19,11 +20,11 @@ function Separator({ orientation={orientation} className={cn( "shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch", - className, + className )} {...props} /> - ); + ) } -export { Separator }; +export { Separator } |
