Dashboard sipadu mbip
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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;