UNPKG

box-ui-elements-mlh

Version:
16 lines (15 loc) 399 B
import * as React from 'react'; import Link from './Link'; export interface LinkGroupProps { children: Array<React.ReactElement<Link>>; className: string; title?: React.ReactNode; } declare class LinkGroup extends React.Component<LinkGroupProps> { static defaultProps: { title: string; className: string; }; render(): JSX.Element; } export default LinkGroup;