import styled from '@emotion/styled'; import ErrorBoundary from 'sentry/components/errorBoundary'; import getBadge from './getBadge'; type Props = React.ComponentProps & Record; /** * Public interface for all "id badges": * Organization, project, team, user */ const IdBadge = (props: Props) => { const componentBadge = getBadge(props); if (!componentBadge) { throw new Error( 'IdBadge: required property missing (organization, project, team, member, user) or misconfigured' ); } return {componentBadge}; }; export default IdBadge; const InlineErrorBoundary = styled(ErrorBoundary)` background-color: transparent; border-color: transparent; display: flex; align-items: center; margin-bottom: 0; box-shadow: none; padding: 0; /* Because badges don't have any padding, so this should make the boundary fit well */ `;