Skip to content

Instantly share code, notes, and snippets.

@manabuyasuda
Last active December 14, 2021 07:05
Show Gist options
  • Select an option

  • Save manabuyasuda/c6bc9a5b492d9abbbfed0fc287ca5cc6 to your computer and use it in GitHub Desktop.

Select an option

Save manabuyasuda/c6bc9a5b492d9abbbfed0fc287ca5cc6 to your computer and use it in GitHub Desktop.
//- @param {Object} params
//- @param {String} params.name [""] SVGスプライトのid名
//-
//- @examples Input
//- +Icon({ name: "menu" })
//- @examples Output
//- <svg role="img">
//- <use xlink:href="/assets/svg/sprite.svg#menu"></use>
//- </svg>
mixin Icon(params={})
-
const props = Object.assign({
name: "",
}, params)
svg(role="img")&attributes(attributes)
use(xlink:href=`/assets/svg/sprite.svg#${props.name}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment