Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
415 Bytes
import { twMerge } from "tailwind-merge";
interface BoxProps {
children: React.ReactNode;
className?: string;
}
const Box: React.FC<BoxProps> = ({
children,
className
}) => {
return (
<div
className={twMerge(
`
bg-neutral-900
rounded-lg
h-fit
w-full
`,
className
)}>
{children}
</div>
);
}
export default Box;