import Alert from 'sentry/components/alert'; import {t} from 'sentry/locale'; type Props = { type?: React.ComponentProps['type']; }; const PreviewFeature = ({type = 'info'}: Props) => ( {t( 'This feature is a preview and may change in the future. Thanks for being an early adopter!' )} ); export default PreviewFeature;