protected createVisual(context: IRenderContext, node: INode): Visual | null {
const { x, y, width, height } = node.layout
const pathElement = document.createElementNS(
'http://www.w3.org/2000/svg',
'path'
)
pathElement.setAttribute('d', createPathData(x, y, width, height))
pathElement.setAttribute('fill', '#0b7189')
pathElement.setAttribute('stroke', '#042d37')
return new SvgVisual(pathElement)
}