UNPKG

box-ui-elements-mlh

Version:
14 lines (13 loc) 351 B
import * as React from 'react'; import { LinkBaseProps } from './LinkBase'; export interface LinkProps extends LinkBaseProps { children: React.ReactChild; className: string; } declare class Link extends React.Component<LinkProps> { static defaultProps: { className: string; }; render(): JSX.Element; } export default Link;