import { Component } from "inferno"; interface IconProps { icon: string; classes?: string; } export class Icon extends Component { constructor(props: any, context: any) { super(props, context); } render() { return (
{this.props.icon}
); } } export class Spinner extends Component { constructor(props: any, context: any) { super(props, context); } render() { return ; } }