sentryAppIcon.tsx 340 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. function SentryAppIcon({sentryApp, size}: Props) {
  8. return <SentryAppAvatar sentryApp={sentryApp} size={size} isColor />;
  9. }
  10. export default SentryAppIcon;