import React from 'react'; import type { Application } from './application.model'; import type { IOverridableProps } from '../overrideRegistry/Overridable'; import { Overridable } from '../overrideRegistry/Overridable'; export interface IApplicationIconProps extends IOverridableProps { app: Application; } @Overridable('applicationIcon') export class ApplicationIcon extends React.Component { public render() { return ; } }