import styled from '@emotion/styled'; import { themeGet } from '@styled-system/theme-get'; const Footer = styled('footer')` padding: 0; margin: 0; display: flex; justify-content: space-between; flex-shrink: 0; border-top: 1px solid ${themeGet('sidebarStyles.borderColor')}; border-bottom: 1px solid ${themeGet('sidebarStyles.borderColor')}; `; export default Footer;