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 = (props: RepositoryProps): JSX.Element => { const { name, description, href } = props return (
{name}

{description}

) }