constants.ts 410 B

123456789101112131415161718192021
  1. import {
  2. BASE_CLASS_PREFIX
  3. } from '../base/constants';
  4. const cssClasses = {
  5. PREFIX: `${BASE_CLASS_PREFIX }-badge`,
  6. };
  7. const strings = {
  8. TYPE_SET: ['primary', 'secondary', 'tertiary', 'warning', 'danger'],
  9. THEME_SET: ['solid', 'light', 'inverted'],
  10. POS_SET: ['leftTop', 'leftBottom', 'rightTop', 'rightBottom'],
  11. };
  12. const numbers = {};
  13. export {
  14. cssClasses,
  15. strings,
  16. numbers
  17. };