constants.ts 392 B

1234567891011121314151617
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-typography`,
  4. };
  5. const strings = {
  6. TYPE: ['primary', 'secondary', 'danger', 'warning', 'success', 'tertiary', 'quaternary'],
  7. SIZE: ['normal', 'small'],
  8. SPACING: ['normal', 'extended'],
  9. HEADING: [1, 2, 3, 4, 5, 6]
  10. } as const;
  11. export {
  12. cssClasses,
  13. strings
  14. };