Files
my-links/inertia/components/dashboard/swiper_handler.tsx
2024-10-07 01:33:59 +02:00

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;