UNPKG
@print-one/grapesjs
Version:
latest (0.21.25)
0.21.25
0.21.24
0.21.22
0.21.21
0.21.20
0.21.18
0.21.17
0.21.15
0.21.14
0.21.13
0.21.12
0.21.10
0.21.9
Free and Open Source Web Builder Framework
grapesjs.com
Print-one/grapesjs
@print-one/grapesjs
/
src
/
dom_components
/
view
/
ComponentSvgView.ts
8 lines
(6 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
ComponentView
from
'./ComponentView'
;
export
default
class
ComponentSvgView
extends
ComponentView
{
_createElement
(
tagName
:
string
) {
return
document
.
createElementNS
(
'http://www.w3.org/2000/svg'
, tagName); } }