UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

10 lines (9 loc) 512 B
import React, { ReactNode } from 'react'; /** * 为支持 Harmony 的 React 元素添加颜色属性 * @param maybeElement - 要处理的 React 节点 * @param color - 要添加的颜色值(如:'#ff0000') * @returns 处理后的 React 节点 */ declare function addColorForHarmony(maybeElement: ReactNode, color?: string): string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined; export default addColorForHarmony;