UNPKG

@eccenca/gui-elements

Version:

Collection of low-level GUI elements like Buttons, Icons or Alerts. Also includes core styles for those elements.

11 lines (8 loc) 319 B
import _ from 'lodash'; // check if several classnames are used and try to replace them with given property list const classnameSeperator = (classname, propObject) => _.map( _.split(classname, ' '), prop => ` ${_.get(propObject, [prop], prop)}` ).join(' '); export default classnameSeperator;