sentryAppIcon.tsx 344 B

12345678910111213
  1. import SentryAppAvatar from 'sentry/components/avatar/sentryAppAvatar';
  2. import {AvatarSentryApp} from 'sentry/types';
  3. type Props = {
  4. sentryApp: AvatarSentryApp;
  5. size: number;
  6. };
  7. const SentryAppIcon = ({sentryApp, size}: Props) => {
  8. return <SentryAppAvatar sentryApp={sentryApp} size={size} isColor />;
  9. };
  10. export default SentryAppIcon;