blob: 3e38c4a7de534ddc01f63d2d475517cbbee8b38c (
plain) (
tree)
|
|
import { ObjectMap } from '@0x/types';
import * as _ from 'lodash';
export const cssRuleIfExists = (props: ObjectMap<any>, rule: string): string => {
const camelCaseRule = _.camelCase(rule);
const ruleValueIfExists = props[camelCaseRule];
if (!_.isUndefined(ruleValueIfExists)) {
return `${rule}: ${ruleValueIfExists};`;
}
return '';
};
|