import { ShadowContainer } from 'components/design/ShadowContainer' import { GitHubIcon } from 'components/Profile/SocialMediaList/SocialMediaIcons/GitHubIcon' export interface RepositoryProps { name: string description: string href: string } export const Repository: React.FC = (props) => { const { name, description, href } = props return (
{name}

{description}

) }