@postenbring/hedwig-react
Version:
React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).
11 lines • 547 B
TypeScript
import type { ListProps } from "./list";
export interface LinkListProps extends Omit<ListProps, "listStyle"> {
children?: React.ReactElement<HTMLLIElement> | React.ReactElement<HTMLLIElement>[];
}
/**
* Show a list of links
*
* For other list types use `UnorderedList` and `OrderedList`, or use your own list component using the semantic `ul` and `ol` tags.
*/
export declare const LinkList: import("react").ForwardRefExoticComponent<LinkListProps & import("react").RefAttributes<HTMLUListElement>>;
//# sourceMappingURL=link-list.d.ts.map