0.0.1 • Published 2 years ago

@cjy0208/icons-bootstrap v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

icons-bootstrap

size

Bootstrap Icons 组件库

安装

yarn add @cjy0208/icons-bootstrap
# 或者
npm install @cjy0208/icons-bootstrap --save

按需加载

配合 babel-plugin-import 实现按需加载

// babel.config.js
module.exports = {
  plugins: [
    [
      'babel-plugin-import',
      {
        libraryName: '@cjy0208/icons-bootstrap',
        camel2DashComponentName: false,
      },
      '@cjy0208/icons-bootstrap',
    ],
  ],
}