0.1.0 • Published 1 year ago

@ezuikit/icons v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

使用

umd

<body>
    <div id="app"></div>
    <script src="./index.umd.js"></script>
    <script>
        (function () {
            const calendarIcon = Icons.calendarIcon
            document.getElementById("app").appendChild(calendarIcon())
        })()
    </script>
</body>

npm

npm install @ezuikit/icons
import {calendarIcon} from '@ezuikit/icons'

document.getElementById("app").appendChild(calendarIcon())