Link.d.ts 358 B

1234567
  1. import * as React from 'react';
  2. import type { BlockProps } from './Base';
  3. export interface LinkProps extends BlockProps<'a'>, Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'type' | keyof BlockProps<'a'>> {
  4. ellipsis?: boolean;
  5. }
  6. declare const Link: React.ForwardRefExoticComponent<LinkProps & React.RefAttributes<HTMLElement>>;
  7. export default Link;