Skip to content

Instantly share code, notes, and snippets.

@DonHuskini
Created April 4, 2021 22:40
Show Gist options
  • Save DonHuskini/2c1f22c35b41203a3a520eb95b322e4b to your computer and use it in GitHub Desktop.
Save DonHuskini/2c1f22c35b41203a3a520eb95b322e4b to your computer and use it in GitHub Desktop.
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