3e8679b350cd65ec03a0317326933eb669308f327612e8e608683d9d5a2c5674b19a8143432b93080ea90ab6b5602a6b2cc6efdd73169d32866ddbf4835529 658 B

12345678910111213141516171819202122232425262728
  1. import { ElementUIComponent, ElementUIComponentSize } from './component'
  2. export type TagType = 'primary' | 'gray' | 'success' | 'warning' | 'danger'
  3. export type TagTheme = 'dark' | 'light' | 'plain'
  4. /** Tag Component */
  5. export declare class ElTag extends ElementUIComponent {
  6. /** Tag type */
  7. type: TagType
  8. /** Whether Tab can be removed */
  9. closable: boolean
  10. /** Whether the removal animation is disabled */
  11. disableTransitions: boolean
  12. /** Whether Tag has a highlighted border */
  13. hit: boolean
  14. /** Background color of the tag */
  15. color: string
  16. /** Tag size */
  17. size: ElementUIComponentSize
  18. /** Tag theme */
  19. effect: TagTheme
  20. }