Created
April 4, 2021 22:40
-
-
Save DonHuskini/2c1f22c35b41203a3a520eb95b322e4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from "styled-components"; | |
const S = {}; | |
S.CarouselItem = styled.div` | |
padding: 0.5rem 0; | |
border-bottom: solid 1px; | |
img { | |
width: 100%; | |
height: 100%; | |
object-fit: contain; | |
} | |
`; | |
const CarouselItem = ({ children }) => { | |
return <S.CarouselItem>{children}</S.CarouselItem>; | |
}; | |
export default CarouselItem; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment