Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / presets / SectionLinkList / SectionLinkList.d.ts
Size: Mime:
import React from 'react';
import { SectionLinkListProps, ListItemProps } from './typings';
declare class SectionLinkList extends React.PureComponent<SectionLinkListProps> {
    static defaultProps: {
        className: string;
        list: {
            label: string;
            href: string;
        }[];
        title: string;
        renderItem: (item: ListItemProps) => JSX.Element;
    };
    render(): JSX.Element;
}
export { SectionLinkList };
export default SectionLinkList;