123456789101112131415161718192021222324 |
- import BadgeDisplayName from 'sentry/components/idBadge/badgeDisplayName';
- import BaseBadge from 'sentry/components/idBadge/baseBadge';
- type BaseBadgeProps = React.ComponentProps<typeof BaseBadge>;
- type Team = NonNullable<BaseBadgeProps['team']>;
- export interface BadgeProps
- extends Partial<Omit<BaseBadgeProps, 'project' | 'organization' | 'team'>> {
- team: Team;
- // If true, will use default max-width, or specify one as a string
- hideOverflow?: boolean | string;
- }
- const Badge = ({hideOverflow = true, team, ...props}: BadgeProps): React.ReactElement => (
- <BaseBadge
- displayName={
- <BadgeDisplayName hideOverflow={hideOverflow}>{`#${team.slug}`}</BadgeDisplayName>
- }
- team={team}
- {...props}
- />
- );
- export default Badge;
|