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}
); } } interface SpinnerProps { large?: boolean; } export class Spinner extends Component { constructor(props: any, context: any) { super(props, context); } render() { return ( ); } }