From 395eba5af6c5a6f48088ed437ef8fc485f216d51 Mon Sep 17 00:00:00 2001 From: AykutSarac Date: Wed, 6 Apr 2022 15:01:46 +0300 Subject: [PATCH] lint --- src/components/Image/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Image/index.tsx b/src/components/Image/index.tsx index d53561a..11932a6 100644 --- a/src/components/Image/index.tsx +++ b/src/components/Image/index.tsx @@ -1,15 +1,15 @@ -import React from 'react'; -import styled from 'styled-components'; +import React from "react"; +import styled from "styled-components"; const StyledImage = styled.img` object-fit: contain; height: auto; - + @media only screen and (max-width: 768px) { width: 100%; } `; export const Image = ({ ...props }) => { - return + return ; };