import * as React from "react"; interface Props { className: string; viewBox: string; preserveAspectRatio?: string; } export default class BaseSvg extends React.PureComponent { static defaultProps = { className: "", viewBox: "0 0 100 100", }; render() { const { className, viewBox, children, preserveAspectRatio } = this.props; let classNames: Array = ["ddbc-svg", className]; return ( {children} ); } }