Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.05 KB

README.md

File metadata and controls

59 lines (39 loc) · 1.05 KB

elm-adorable-avatars

Simple, elegant and adorable avatars provided by http://avatars.adorable.io.

example avatar

Installing

elm-package install hendore/elm-adorable-avatars

Basic Usage

module Main exposing (..)

import Html.Attributes
import AdorableAvatars


main =
    let
        size =
            128

        identifier =
            "elm-adorable-avatars"
    in
        AdorableAvatars.img [ Html.Attributes.style avatarStyle ] size identifier


avatarStyle =
    [ ( "borderRadius", "50%" ) ]

Maintainers

This package is maintained by

Thanks

This package would be useless without Adorable Avatars.

So thanks to all those behind that service for making elm-adorable-avatars possible.

License

The source code for this package is released under the terms of the BSD3 license. See the LICENSE file.