constants.ts 406 B

123456789101112131415
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-icon`,
  4. };
  5. const strings = {
  6. SIZE: ['extra-small', 'small', 'default', 'large', 'extra-large', 'custom'],
  7. // use in svg xhref. No need to respond to the change of prefixCls, always constant
  8. ICON_PREFIX: 'semi-icon-',
  9. };
  10. const numbers = {};
  11. export { cssClasses, strings, numbers };