mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
import postcss from 'postcss'
|
|
import _ from 'lodash'
|
|
import defineClass from './defineClass'
|
|
|
|
export default function defineClasses(classes) {
|
|
return _.map(classes, (properties, className) => {
|
|
return defineClass(className, properties)
|
|
})
|
|
}
|