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