import { mergeClasses } from '@expo/styleguide'; import { ArrowUpRightIcon } from '@expo/styleguide-icons'; import type { ComponentType, HTMLAttributes } from 'react'; import { A } from '../Text'; type SidebarSingleEntryProps = { href: string; title: string; Icon: ComponentType>; isActive?: boolean; isExternal?: boolean; secondary?: boolean; }; export const SidebarSingleEntry = ({ href, title, Icon, isActive = false, isExternal = false, secondary = false, }: SidebarSingleEntryProps) => { return ( {title} {isExternal && } ); };