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;