UNPKG

css-in-js-utils

Version:

Useful utility functions for CSS in JS solutions

4 lines 167 B
import hyphenateProperty from './hyphenateProperty'; export default function cssifyDeclaration(property, value) { return hyphenateProperty(property) + ':' + value; }