UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

16 lines (15 loc) 371 B
/// <reference types="react" /> interface ListProps { items: Array<Partial<Record<"name" | "value" | "href", any>>>; link?: boolean; group?: boolean; groupFlush?: boolean; icon?: any; } /** * This components renders bootstrap list. * * @returns JSX of the generated List. */ export declare function List(props: ListProps): JSX.Element; export {};