UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

20 lines (19 loc) 826 B
import { CompHeadingProps } from '../CompHeading'; import { ParagraphProps } from '../Paragraph'; import { DecorativeLinkProps } from '../DecorativeLink'; export interface LinkListProps { /** `@atoms/headings/CompHeading` */ compHeading?: CompHeadingProps; /** short description rendered below the heading, note that this version renders `@atoms/text/Paragraph` instead of rich text */ description?: ParagraphProps; /** Render links as a stacked list instead of two columns */ stacked?: boolean; /** Hide bullets for the list of links */ hideBullets?: boolean; /** List of links rendered */ links: DecorativeLinkProps[]; /** `@atoms/DecorativeLink` as see all link */ more?: DecorativeLinkProps; } declare const LinkList: (props: LinkListProps) => any; export default LinkList;