Kyoo/front/src/primitives/container.tsx
2026-02-19 22:35:11 +01:00

16 lines
312 B
TypeScript

import { View, type ViewProps } from "react-native";
import { cn } from "~/utils";
export const Container = ({ className, ...props }: ViewProps) => {
return (
<View
className={cn(
"flex w-full self-center px-4",
"sm:w-xl md:w-3xl lg:w-5xl xl:w-7xl",
className,
)}
{...props}
/>
);
};