UNPKG

next-gen-ui

Version:

Next Gen Ui is a home for front-end & UI/Ux developers. We provide all the necessary components required to build a scalable front-end application which suits the user experience in a unique way.

11 lines 451 B
import React, { ElementType, HTMLAttributes, ReactNode } from 'react'; export interface LinkProps extends Omit<HTMLAttributes<HTMLAnchorElement>, 'as' | 'disabled'> { disabled?: boolean; className?: string; children: ReactNode; as?: ElementType; href?: string; } declare const _default: React.ForwardRefExoticComponent<LinkProps & React.RefAttributes<HTMLAnchorElement>>; export default _default; //# sourceMappingURL=link.d.ts.map