svg-icons 2.9.2.1 → 2.9.3.0
raw patch · 2 files changed
+49/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ SvgIcons.Icons.Tools: key1 :: Svg
Files
- src/SvgIcons/Icons/Tools.hs +48/−1
- svg-icons.cabal +1/−1
src/SvgIcons/Icons/Tools.hs view
@@ -10,6 +10,7 @@ , key , keyWithArc , lock + , key1 ) where import Text.Blaze.Svg11 ((!)) @@ -31,6 +32,7 @@ > , (,) "key" key > , (,) "keyWithArc" keyWithArc > , (,) "lock" lock +> , (,) "key1" key1 > ] -} svgTools :: [ (String , S.Svg) ] @@ -40,6 +42,7 @@ , (,) "key" key , (,) "keyWithArc" keyWithArc , (,) "lock" lock + , (,) "key1" key1 ] @@ -233,4 +236,48 @@  -} cog9 :: S.Svg -cog9 = cogwheel 9 0.12+cog9 = cogwheel 9 0.12 + + + +{- | + + + + + +-} +key1 :: S.Svg +key1 = + S.g $ + S.path + ! A.d keyPath + ! A.transform (rotateAround 45 0 0) + where + x1 = -0.1 + y1 = 0.2 + r1 = 0.51 + x2 = 1.05 + x3 = x2 + y1 + x0 = -0.6 + r0 = 0.15 + keyPath = mkPath $ do + m x1 y1 + aa r1 r1 0 True True x1 (-y1) + l x2 (-y1) + l x3 0 + l x2 y1 + lr (-0.1) 0 + lr (-0.1) (-0.1) + lr (-0.1) ( 0.1) + lr (-0.1) (-0.1) + lr (-0.1) ( 0.1) + lr (-0.1) (-0.1) + lr (-0.1) ( 0.1) + lr (-0.1) (-0.1) + lr (-0.15) ( 0.15) + lr (-0.05) (-0.05) + S.z + m x0 0 + aa r0 r0 0 True False x0 0.001 + S.z
svg-icons.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: svg-icons -version: 2.9.2.1 +version: 2.9.3.0 homepage: https://github.com/RamiroPastor/SvgIcons license: BSD-3-Clause license-file: LICENSE