sentryAppIcon.tsx 372 B

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