import {Fragment} from 'react'; import styled from '@emotion/styled'; import Access from 'sentry/components/acl/access'; import {Button} from 'sentry/components/button'; import Confirm from 'sentry/components/confirm'; import IdBadge from 'sentry/components/idBadge'; import {Tooltip} from 'sentry/components/tooltip'; import {IconDelete, IconEdit} from 'sentry/icons'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {Project, RepositoryProjectPathConfig} from 'sentry/types'; type Props = { onDelete: (pathConfig: RepositoryProjectPathConfig) => void; onEdit: (pathConfig: RepositoryProjectPathConfig) => void; pathConfig: RepositoryProjectPathConfig; project: Project; }; export default function RepositoryProjectPathConfigRow({ pathConfig, project, onEdit, onDelete, }: Props) { return ( {pathConfig.repoName}  | {pathConfig.defaultBranch} {pathConfig.sourceRoot} {pathConfig.stackRoot}