replaysFeatureBadge.tsx 248 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="beta" />;
  6. }
  7. export default ReplaysFeatureBadge;