Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SafeAnchor.d.ts 439B

123456789101112131415161718
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface SafeAnchorProps {
  4. href?: string;
  5. onClick?: React.MouseEventHandler<this>;
  6. onKeyDown?: React.KeyboardEventHandler<this>;
  7. disabled?: boolean;
  8. role?: string;
  9. tabIndex?: number | string;
  10. }
  11. declare class SafeAnchor<
  12. As extends React.ElementType = 'a'
  13. > extends BsPrefixComponent<As, SafeAnchorProps> {}
  14. export default SafeAnchor;