import * as React from "react"; import { GenericChartComponent } from "@fishbot/chart-core"; interface SVGComponentProps { readonly children: (moreProps: any) => React.ReactNode; } export class SVGComponent extends React.Component { public render() { const { children } = this.props; return ; } }