import type { HTMLAttributes, PropsWithChildren } from "react";
import { cn } from "../../lib/cn";
export type AspectRatioProps = PropsWithChildren<
HTMLAttributes & {
ratio?: number | string;
}
>;
export function AspectRatio({ children, className, ratio = 16 / 9, style, ...props }: AspectRatioProps) {
return (
{children}
);
}