Website for showcasing all features of Tesseract Web.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

23 行
493 B

  1. import * as ButtonBase from '@tesseract-design/web-base-button';
  2. // TODO check if a utility library like this is needed!
  3. export type ButtonBaseProps<Node> = {
  4. /**
  5. * Size of the component.
  6. */
  7. size?: ButtonBase.ButtonSize,
  8. /**
  9. * Variant of the component.
  10. */
  11. variant?: ButtonBase.ButtonVariant,
  12. /**
  13. * Should the component display a border?
  14. */
  15. border?: boolean,
  16. /**
  17. * Short complementary content displayed at the edge of the component.
  18. */
  19. badge?: Node,
  20. }