https://github.com/onface/themes-classname
https://github.com/onface/themes-classname
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/onface/themes-classname
- Owner: onface
- Created: 2017-05-31T09:37:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T02:33:06.000Z (almost 7 years ago)
- Last Synced: 2025-04-27T18:19:43.019Z (about 1 month ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# themes-classname
```shell
npm i themes-classname --save
``````js
var themesClassName = require('themes-classname')
themesClassName({
themes: 'dark',
prefixClassName: 'm-modal'
})
// "m-modal--themes-dark"
themesClassName({
themes: 'dark big',
prefixClassName: 'm-modal'
})
// "m-modal--themes-dark m-modal--themes-big"
themesClassName({
themes: 'dark big',
prefixClassName: 'm-select'
}, 'menu')
// "m-select-menu--themes-dark m-select-menu--themes-big"
```