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 (