import React from 'react'; import { Badge, Flex, Link, Text } from '@chakra-ui/react'; type LinksListItemProps = { href: string; title: string; subtitle: string; badgeText?: string; target?: string; icon?: React.ReactChild; hideSubtitleOnMobile?: boolean; }; export function LinksListItem(props: LinksListItemProps) { const { title, subtitle, badgeText, icon, hideSubtitleOnMobile = false, href, target } = props; return ( {icon} {title} {badgeText && {badgeText}} {subtitle} ); }