import React from 'react' import {PencilIcon} from '@primer/octicons-react' import {Box, InlineLink, Stack, Text} from '@primer/react-brand' type FooterProps = { filePath: string repoURL: string repoSrcPath: string } export function Footer({repoURL, repoSrcPath, filePath}: FooterProps) { return ( ) }