UNPKG

@redocly/portal-legacy-ui

Version:

Library of legacy portal UI components

12 lines (11 loc) 316 B
import * as React from 'react'; type LinkProps = { to?: string; target?: '_self' | '_blank'; external?: boolean; className?: string; style?: React.CSSProperties; [key: string]: unknown; }; export declare function Link(props: React.PropsWithChildren<LinkProps>): React.JSX.Element; export {};