sidebarPanelEmpty.tsx 281 B

12345678910111213
  1. import styled from '@emotion/styled';
  2. const SidebarPanelEmpty = styled('div')`
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. color: ${p => p.theme.gray300};
  7. padding: 0 60px;
  8. text-align: center;
  9. min-height: 150px;
  10. `;
  11. export default SidebarPanelEmpty;