diff options
author | 2022-06-22 23:21:48 -0700 | |
---|---|---|
committer | 2022-06-22 23:21:48 -0700 | |
commit | 729d445b6885f69dd2c6355f38707bd42851c791 (patch) | |
tree | f87a7c408929ea3f57bbb7ace380cf869da83c0e /integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js | |
parent | 25f820c6bf1d8ec6d444ef579cc036b8c0607b75 (diff) | |
download | bun-jarred/rename.tar.gz bun-jarred/rename.tar.zst bun-jarred/rename.zip |
change the directory structurejarred/rename
Diffstat (limited to 'integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js')
-rw-r--r-- | integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js b/integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js deleted file mode 100644 index 0ffded054..000000000 --- a/integration/bunjs-only-snippets/solid-dom-fixtures/SVG/code.js +++ /dev/null @@ -1,74 +0,0 @@ -const template = ( - <svg width="400" height="180"> - <rect - stroke-width="2" - x="50" - y="20" - rx="20" - ry="20" - width="150" - height="150" - style="fill:red;stroke:black;stroke-width:5;opacity:0.5" - /> - <linearGradient gradientTransform="rotate(25)"> - <stop offset="0%"></stop> - </linearGradient> - </svg> -); - -const template2 = ( - <svg width="400" height="180"> - <rect - className={state.name} - stroke-width={state.width} - x={state.x} - y={state.y} - rx="20" - ry="20" - width="150" - height="150" - style={{ - fill: "red", - stroke: "black", - "stroke-width": props.stroke, - opacity: 0.5, - }} - /> - </svg> -); - -const template3 = ( - <svg width="400" height="180"> - <rect {...props} /> - </svg> -); - -const template4 = <rect x="50" y="20" width="150" height="150" />; - -const template5 = ( - <> - <rect x="50" y="20" width="150" height="150" /> - </> -); - -const template6 = ( - <Component> - <rect x="50" y="20" width="150" height="150" /> - </Component> -); - -const template7 = ( - <svg viewBox={"0 0 160 40"} xmlns="http://www.w3.org/2000/svg"> - <a xlink:href={url}> - <text x="10" y="25"> - MDN Web Docs - </text> - </a> - </svg> -); - -const template8 = ( - <svg viewBox={"0 0 160 40"} xmlns="http://www.w3.org/2000/svg"> - <text x="10" y="25" textContent={text} /> - </svg> -); |