turkmen-textile-front/src/components/layout/container.tsx

18 lines
337 B
TypeScript
Raw Normal View History

2025-01-29 08:40:38 +00:00
import { cn } from "@/lib/utils";
import { FC, PropsWithChildren } from "react";
interface Props {
className?: string;
}
export const Container: FC<PropsWithChildren<Props>> = ({
className,
children,
}) => {
return (
<div className={cn("w-full mx-auto max-w-[1240px] px-4", className)}>
{children}
</div>
);
};