sudo-archive/src/components/layout/ThinContainer.tsx

19 lines
347 B
TypeScript
Raw Normal View History

2022-02-10 22:45:17 +00:00
import { ReactNode } from "react";
interface ThinContainerProps {
2022-02-13 17:49:03 +00:00
classNames?: string;
children?: ReactNode;
2022-02-10 22:45:17 +00:00
}
export function ThinContainer(props: ThinContainerProps) {
2022-02-13 17:49:03 +00:00
return (
<div
2023-01-07 20:36:18 +00:00
className={`mx-auto w-[600px] max-w-full px-2 sm:px-0 ${
props.classNames || ""
}`}
2022-02-13 17:49:03 +00:00
>
{props.children}
</div>
);
2022-02-10 22:45:17 +00:00
}