summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-12-30 15:05:22 +0000
committerSam Light <samlight1994@gmail.com>2024-12-30 15:05:22 +0000
commitd5655bf5bf6fd41c1628cff64879c963d527162f (patch)
tree59268cfcc87e67111b1d781ed4239d08b30395b2
parent7d01825a66dd80266236423579b37d0fadeb12fb (diff)
Removed width, height, x, y from sprite attributes0.0.2
-rw-r--r--src/SvgSpriteCompiler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SvgSpriteCompiler.php b/src/SvgSpriteCompiler.php
index b4ed89f..5c4e19b 100644
--- a/src/SvgSpriteCompiler.php
+++ b/src/SvgSpriteCompiler.php
@@ -64,7 +64,7 @@ class SvgSpriteCompiler
private function createSymbol(string $name, DOMElement $svg): DOMElement
{
- $attributes = ['width', 'height', 'x', 'y', 'viewBox', 'preserveAspectRatio'];
+ $attributes = ['viewBox', 'preserveAspectRatio'];
$symbol = $this->svg->createElement('symbol');
$symbol->setAttribute('id', $name);