diff options
author | 2023-09-22 12:04:39 +0200 | |
---|---|---|
committer | 2023-09-22 12:04:39 +0200 | |
commit | de7a7fbdc37631cefc70e2310ac9ae286ec7ba32 (patch) | |
tree | ecd4333f5a1163b351a0baa38a32c6f93eceaca3 /packages/integrations/vue | |
parent | da00425a5f6c539ba9dd3d4abed3486678dc6a54 (diff) | |
download | astro-de7a7fbdc37631cefc70e2310ac9ae286ec7ba32.tar.gz astro-de7a7fbdc37631cefc70e2310ac9ae286ec7ba32.tar.zst astro-de7a7fbdc37631cefc70e2310ac9ae286ec7ba32.zip |
nit: optimize images (#8629)
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r-- | packages/integrations/vue/test/fixtures/app-entrypoint/src/components/Circle.svg | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/integrations/vue/test/fixtures/app-entrypoint/src/components/Circle.svg b/packages/integrations/vue/test/fixtures/app-entrypoint/src/components/Circle.svg index 1b207e41a..cf2bd92fc 100644 --- a/packages/integrations/vue/test/fixtures/app-entrypoint/src/components/Circle.svg +++ b/packages/integrations/vue/test/fixtures/app-entrypoint/src/components/Circle.svg @@ -1,3 +1 @@ -<svg viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"> - <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> -</svg> +<svg fill="none" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" fill="#ff0" r="40" stroke="#008000" stroke-width="4"/></svg>
\ No newline at end of file |