Skip to content

Commit 7e9d95a

Browse files
committed
fix: merge className
1 parent 94c313e commit 7e9d95a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/client/section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ import type * as React from "react"
55
import { cn } from "@/lib/utils"
66

77
export const Section = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => {
8-
return <div className={cn("p-0 mt-0 mr-[-9px] mb-[18px] ml-[-9px]")} {...props} />
8+
return <div className={cn("p-0 mt-0 mr-[-9px] mb-[18px] ml-[-9px]", className)} {...props} />
99
}

0 commit comments

Comments
 (0)