Last active
December 14, 2021 07:05
-
-
Save manabuyasuda/c6bc9a5b492d9abbbfed0fc287ca5cc6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //- @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