import React from 'react' import styled from 'styled-components' export interface ImageProps { src: string alt?: string width?: string height?: string className?: string } const StyledImage = styled.img>` width: ${({ width }) => width ?? 'auto'}; height: ${({ height }) => height ?? 'auto'}; ` export const Image: React.FC = ({ src, alt, width, height, className }) => { return }