Created
June 23, 2021 07:46
-
-
Save banuragaxioned/d61269be5e568a33523481f303b8eedb to your computer and use it in GitHub Desktop.
Updated version of maxboeck's eleventastic - /utils/shortcodes.js
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
module.exports = { | |
icon: function (name) { | |
return `<svg class="icon icon--${name}" role="img" aria-hidden="true"> | |
<use xlink:href="#icon-${name}"></use> | |
</svg>` | |
}, | |
logo: function (name, width, height) { | |
return `<svg class="logo-default-${name}" role="img" aria-hidden="true" width="${width}", height="${height}"> | |
<use xlink:href="#icon-${name}"></use> | |
</svg>` | |
}, | |
colorlogo: function (name, width, height, fill) { | |
return `<svg class="logo-color-${name}" role="img" aria-hidden="true" width="${width}", height="${height}"> | |
<use xlink:href="#icon-${name}" fill="${fill}"></use> | |
</svg>` | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment