mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
16
docs/components/misc/Wrapper.tsx
Normal file
16
docs/components/misc/Wrapper.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { cn } from "@/lib/cn";
|
||||
import type { HTMLAttributes } from "react";
|
||||
|
||||
export function Wrapper(props: HTMLAttributes<HTMLDivElement>) {
|
||||
return (
|
||||
<div
|
||||
{...props}
|
||||
className={cn(
|
||||
"rounded-lg bg-radial-[at_bottom] from-fd-primary/10 p-4 border bg-origin-border border-fd-accent-primary/10 prose-no-margin dark:bg-black/20",
|
||||
props.className,
|
||||
)}
|
||||
>
|
||||
{props.children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user