UNPKG

vinyl-component-blocks

Version:

Modular, Reusable, and Styled UI Component Library. Stop repeating work, install, call, use, modify.

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