styled.ts 120 B

12345678
  1. import styled from 'styled-components';
  2. const Img = styled.img`
  3. width: 100%;
  4. height: 100%;
  5. `;
  6. export default Img;