import React, { forwardRef } from "react"; import styled from "styled-components"; import { space } from "styled-system"; import { WrapperProps } from "./types"; const StyledWrapper = styled.div<{ $width: number; $height: number }>` max-height: ${({ $height }) => $height}px; max-width: ${({ $width }) => $width}px; position: relative; width: 100%; &:after { content: ""; display: block; padding-top: ${({ $width, $height }) => ($height / $width) * 100}%; } ${space} `; const Wrapper = forwardRef(({ width, height, ...props }, ref) => { return ; }); export default Wrapper;