StyledWrapper.styled.ts 190 B

12345678
  1. import styled, { css } from 'styled-components';
  2. export const StyledWrapper = styled.div(
  3. ({ theme }) => css`
  4. background-color: ${theme.viewer.wrapper};
  5. padding: 8px 16px;
  6. `
  7. );