replaysFeatureBadge.tsx 249 B

123456789
  1. import FeatureBadge from 'sentry/components/featureBadge';
  2. function ReplaysFeatureBadge(
  3. props: Omit<React.ComponentProps<typeof FeatureBadge>, 'type'>
  4. ) {
  5. return <FeatureBadge {...props} type="alpha" />;
  6. }
  7. export default ReplaysFeatureBadge;