import { ArrowRight } from '@phosphor-icons/react'; const PAIRS = [ ['heic', 'jpg'], ['png', 'webp'], ['docx', 'pdf'], ['ttf', 'woff'], ['epub', 'mobi'], ['rar', 'zip'], ]; function Pill({ from, to }) { return ( {from.toUpperCase()} {to.toUpperCase()} ); } export function FormatMarquee() { return ( ); }