src/app/components/MostRead/Label/index.styles.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { css, Theme } from '@emotion/react';

const styles = {
  sectionLabel: ({ mq, spacings }: Theme) =>
    css({
      [mq.GROUP_3_ONLY]: {
        marginBottom: `${spacings.DOUBLE}rem`,
      },
    }),
};

export default styles;