svg-icons-3.8.3: Svg Icons and more
Safe HaskellSafe-Inferred
LanguageHaskell2010

SvgIcons.Icons.Coding

Synopsis

Documentation

svgCoding :: [(String, Svg)] Source #

A list with all the icons from this module, together with appropriate names.

svgCoding :: [ (String , S.Svg) ]
svgCoding =
  [ (,) "xmlCode" xmlCode
  , (,) "haskell" haskell
  , (,) "git"     git
  ]

haskell :: Svg Source #

Note: you can remove fill colors with CSS:

path {
  fill: none;
}

git :: Svg Source #

Note: if you want to use a stroked version, you can embed this icon in a bigger viewbox such as "-1.2 -1.2 2.4 2.4" or scale down:

git
  ! A.transform (S.scale 0.8 0.8)