diff options
author | Sam Light <samlight1994@gmail.com> | 2024-12-30 15:05:22 +0000 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2024-12-30 15:05:22 +0000 |
commit | d5655bf5bf6fd41c1628cff64879c963d527162f (patch) | |
tree | 59268cfcc87e67111b1d781ed4239d08b30395b2 | |
parent | 7d01825a66dd80266236423579b37d0fadeb12fb (diff) |
Removed width, height, x, y from sprite attributes0.0.2
-rw-r--r-- | src/SvgSpriteCompiler.php | 2 |
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); |