import * as React from 'react'; import Alert from 'sentry/components/alert'; import {IconLab} from 'sentry/icons'; 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;