sendou.ink/app/components/Main.tsx

63 lines
1.1 KiB
TypeScript

import clsx from "clsx";
import type * as React from "react";
import styles from "./Main.module.css";
export const Main = ({
children,
className,
classNameOverwrite,
halfWidth,
bigger,
breakoutContainer,
style,
testId,
}: {
children: React.ReactNode;
className?: string;
classNameOverwrite?: string;
halfWidth?: boolean;
bigger?: boolean;
breakoutContainer?: boolean;
style?: React.CSSProperties;
testId?: string;
}) => {
return (
<main
className={
classNameOverwrite
? clsx(classNameOverwrite, {
[styles.narrow]: halfWidth,
})
: clsx(
styles.main,
styles.normal,
{
[styles.narrow]: halfWidth,
[styles.wide]: bigger,
},
className,
)
}
data-main-breakout={breakoutContainer || undefined}
data-testid={testId}
style={style}
>
{children}
</main>
);
};
export { styles as mainStyles };
export const containerClassName = (width: "narrow" | "normal" | "wide") => {
if (width === "narrow") {
return styles.narrow;
}
if (width === "wide") {
return styles.wide;
}
return styles.normal;
};