src/app/components/ThemeProvider/fontVariants/reithQalam.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { REITH_QALAM } from '../fontFamilies';

const reithQalam = {
  sans: {
    regular: {
      fontFamily: REITH_QALAM,
      fontStyle: 'normal',
      fontWeight: 400,
    },
    bold: {
      fontFamily: REITH_QALAM,
      fontStyle: 'normal',
      fontWeight: 700,
    },
  },
};

export default reithQalam;