Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

NoRedInk/elm-asset-path

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AssetPath Build Status

Elm package for defining a typed asset path and obtaining its URL.

Usage

import Html exposing (..)
import Html.Attributes exposing (..)
import AssetPath exposing(Asset(..))


viewStar : Html msg
viewStar =
    img [ src <| AssetPath.url <| Asset "/assets/star.png" ]
        []