import clsx from "clsx"; import type * as React from "react"; export const Main = ({ children, className, halfWidth, }: { children: React.ReactNode; className?: string; halfWidth?: boolean; }) => (
{children}
);