Vizzuality/landgriffon

View on GitHub
client/src/components/badge/constants.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const THEME_CLASSNAMES = {
  default: {
    wrapper: 'bg-orange-50 border border-orange-300 rounded-md',
    closeIcon: 'hover:text-white hover:bg-orange-300 hover:ring-orange-300',
  },
  big: {
    wrapper: 'bg-orange-50 border border-orange-300 rounded h-[32px]',
    closeIcon: 'hover:text-white hover:bg-orange-300 hover:ring-orange-300',
  },
} as const;