'use strict'; import "../theme/mark.css" export interface circleParam { color: string, name: string } const circle = (params: circleParam) => { let markContent = '

' + params.name + '

';; return markContent; } export default { circle }