ragflow / web /src /components /ui /container.tsx
balibabu
Feat: Modify the style of the home page in bright mode #3221 (#3832)
8446e15
raw
history blame
396 Bytes
import { cn } from '@/lib/utils';
export function Container({
children,
className,
...props
}: React.PropsWithChildren<React.HTMLAttributes<HTMLDivElement>>) {
return (
<div
className={cn(
'px-2 py-1 bg-colors-background-inverse-standard inline-flex items-center rounded-sm gap-2',
className,
)}
{...props}
>
{children}
</div>
);
}