import classNames from "classnames"; import React from "react"; export type Props = { /** * The style of component */ className?: string; /** * The optional child */ children?: React.ReactNode; }; const AspectRatio = ({ className, children }: Props) => { return (
{children}
); }; AspectRatio.Content = function AspectRatioContent({ className, children, }: Props) { return (
{children}
); }; export default AspectRatio;