UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

24 lines (22 loc) 782 B
/* eslint-disable */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * From React 16.0.0 * @noflow */ import isUnitlessNumber from '../unitlessNumbers'; /** * Convert a value into the proper css writable value. The style name `name` * should be logical (no hyphens), as specified * in `CSSProperty.isUnitlessNumber`. * * @param {string} name CSS property name such as `topMargin`. * @param {*} value CSS property value such as `10px`. * @return {string} Normalized style value with dimensions applied. */ declare function dangerousStyleValue(name: any, value: any, isCustomProperty: any): any; export default dangerousStyleValue;