mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const SwiperHandler = styled.div(({ theme }) => ({
|
|
height: '100%',
|
|
width: '100%',
|
|
display: 'flex',
|
|
transition: `background-color ${theme.transition.delay}`,
|
|
}));
|
|
|
|
export default SwiperHandler;
|