mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-25 15:27:40 +01:00
16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
interface ThinContainerProps {
|
|
classNames?: string;
|
|
children?: ReactNode;
|
|
}
|
|
|
|
export function ThinContainer(props: ThinContainerProps) {
|
|
return (
|
|
<div
|
|
className={`max-w-[600px] mx-auto px-2 sm:px-0 ${props.classNames || ""}`}
|
|
>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|