svg-icons 3.4.0 → 3.5.0
raw patch · 2 files changed
+28/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ SvgIcons.Icons.Human: talk2 :: Svg
Files
- src/SvgIcons/Icons/Human.hs +27/−1
- svg-icons.cabal +1/−1
src/SvgIcons/Icons/Human.hs view
@@ -12,6 +12,7 @@ , people , person , talk + , talk2 ) where import Text.Blaze.Svg11 ((!)) @@ -35,6 +36,7 @@ > , (,) "people" people > , (,) "person" person > , (,) "talk" talk +> , (,) "talk2" talk2 > ] -} svgHuman :: [ (String , S.Svg) ] @@ -47,6 +49,7 @@ , (,) "people" people , (,) "person" person , (,) "talk" talk + , (,) "talk2" talk2 ] @@ -335,4 +338,27 @@ ! A.fontWeight "bold" ! A.letterSpacing "0.05" ! A.strokeLinejoin "round" - ! A.strokeLinecap "round"+ ! A.strokeLinecap "round" + + + +{- | + + + + + +-} +talk2 :: Svg +talk2 = + S.path + ! A.class_ "HaskellSvgIcons__talk2" + ! A.d bubble + ! A.fillRule "evenodd" + ! A.strokeMiterlimit "1000" + where + bubble = mkPath $ do + m (-0.55) ( 0.45) + aa 0.8 0.7 0 True True 0.15 (0.6) + l (-0.55) ( 0.75) + S.z
svg-icons.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: svg-icons -version: 3.4.0 +version: 3.5.0 homepage: https://github.com/RamiroPastor/SvgIcons license: BSD-3-Clause license-file: LICENSE