diff --git a/src/components/Image/index.tsx b/src/components/Image/index.tsx new file mode 100644 index 0000000..0c169a1 --- /dev/null +++ b/src/components/Image/index.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import styled from 'styled-components'; + +const StyledImage = styled.img` + object-fit: contain; + + @media only screen and (max-width: 768px) { + width: 100%; + } +`; + +export const Image = ({ ...props }) => { + return +};