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

Summary

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

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

export default marathi;