import { ArrowCircleLeftIcon } from '@heroicons/react/outline' import { Fold } from '../../common/fold' import { foldPath } from '../lib/firebase/folds' import { SiteLink } from './site-link' export function FoldBack(props: { fold: Fold }) { const { fold } = props return ( {' '} {fold.name} ) }