import type { HTMLAttributes, PropsWithChildren } from "react";
import { cn } from "../../lib/cn";
export type CenterProps = PropsWithChildren<
HTMLAttributes & {
axis?: "both" | "x" | "y";
inline?: boolean;
}
>;
export function Center({
axis = "both",
children,
className,
inline = false,
...props
}: CenterProps) {
return (
{children}
);
}