Skip to content

Commit df195da

Browse files
refactor : Ts intergration : src/simulator/src/themer/themeCardSvg.ts (#462)
* refactor * refactor --------- Co-authored-by: Josh Varga <[email protected]>
1 parent cfec397 commit df195da

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/simulator/src/themer/themeCardSvg.js renamed to src/simulator/src/themer/themeCardSvg.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="202.9" height="106" viewBox="0 0 202.9 106">
1+
const svgString: string = `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="202.9" height="106" viewBox="0 0 202.9 106">
22
<defs>
33
<clipPath id="clip">
44
<use xlink:href="#fill"/>
@@ -98,5 +98,6 @@ export default `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.
9898
<path class='svgChev' id="chevron-down-8" data-name="chevron-down" d="M6,9l1.881,1.881L9.762,9" transform="translate(-6 -9)" fill="none" stroke="#bbb" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
9999
</g>
100100
</g>
101-
</svg>
102-
`
101+
</svg>`;
102+
103+
export default svgString;

0 commit comments

Comments
 (0)