import React from "react"; import { CharacterTheme } from "@dndbeyond/character-rules-engine/es"; interface Props { StyleComponent: React.ComponentType; theme: CharacterTheme; className: string; } export default class BoxBackground extends React.PureComponent { static defaultProps = { className: "", }; render() { const { StyleComponent, theme, className } = this.props; let classNames: Array = ["ddbc-box-background", className]; return (
); } }