import { FC, HTMLAttributes } from 'react'; import "./Ratio.css"; interface IRatio extends HTMLAttributes { width: number; height: number; }; const Ratio: FC = ({ width, height, children }) => { return ( {children} ) } export default Ratio;