Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

19 righe
439 B

  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;