UNPKG

@bizhermit/react-sdk

Version:
14 lines (13 loc) 366 B
import { FC } from "react"; import { LayoutColor, LayoutDesign } from "./css-var"; declare type JsxStyleProps = { id: string; depsDesign?: boolean; depsColor?: boolean; children: (params: { color: LayoutColor; design: LayoutDesign; }) => string; }; declare const JsxStyle: FC<JsxStyleProps>; export default JsxStyle;