mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-02-20 10:10:08 -05:00
16 lines
312 B
TypeScript
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}
|
|
/>
|
|
);
|
|
};
|