import styled from '@emotion/styled'; import {space} from 'sentry/styles/space'; import type {Integration} from 'sentry/types'; import IntegrationIcon from 'sentry/views/settings/organizationIntegrations/integrationIcon'; type Props = { integration: Integration; compact?: boolean; }; function IntegrationItem({integration, compact = false}: Props) { return (
{integration.name} {integration.domainName}
); } export default IntegrationItem; const Flex = styled('div')` display: flex; align-items: center; `; const Labels = styled('div')<{compact: boolean}>` box-sizing: border-box; display: flex; ${p => (p.compact ? 'align-items: center;' : '')}; flex-direction: ${p => (p.compact ? 'row' : 'column')}; padding-left: ${space(1)}; min-width: 0; justify-content: center; `; const IntegrationName = styled('div')` font-size: ${p => p.theme.fontSizeMedium}; font-weight: bold; `; // Not using the overflowEllipsis style import here // as it sets width 100% which causes layout issues in the // integration list. const DomainName = styled('div')<{compact: boolean}>` color: ${p => p.theme.subText}; margin-left: ${p => (p.compact ? space(1) : 'inherit')}; margin-top: ${p => (!p.compact ? 0 : 'inherit')}; font-size: ${p => p.theme.fontSizeSmall}; overflow: hidden; text-overflow: ellipsis; `;