Ivan Pavlov
09/29/2021, 4:18 PMProps
interface as var emptySymbol: dynamic
. It should accept react element, but I have no idea how can I do it. I tried few things without success, details in threadIvan Pavlov
09/29/2021, 4:20 PMreact {
ReactButton {
attrs {
this.fullSymbol = kvisionWrapper { add(star()) }
}
}
}
I tried to do this thing but no success. star()
returns Tag
(svg with content)Robert Jaros
09/29/2021, 7:36 PMattrs.fullSymbol = buildElement {
kv {
add(star())
}
}
Ivan Pavlov
09/30/2021, 5:18 AM