import {useTheme} from '@emotion/react'; import styled from '@emotion/styled'; import CircleIndicator from 'sentry/components/circleIndicator'; import {space} from 'sentry/styles/space'; import type {IntegrationInstallationStatus} from 'sentry/types'; import {COLORS} from './constants'; type StatusProps = { status: IntegrationInstallationStatus; }; const StatusWrapper = styled('div')` display: flex; align-items: center; `; const IntegrationStatus = styled(({status, ...p}: StatusProps) => { const theme = useTheme(); return (
{status}
); })` color: ${p => p.theme[COLORS[p.status]]}; margin-left: ${space(0.5)}; font-weight: light; margin-right: ${space(0.75)}; `; export default IntegrationStatus;