@brizy/ui
Version:
React elements in Brizy style
5 lines (4 loc) • 334 B
JavaScript
import React from "react";
import AntConfigProvider from "antd/lib/config-provider";
import { BRZ_PREFIX } from "./constants";
export const ConfigProvider = ({ isRTL, renderEmpty, children }) => (React.createElement(AntConfigProvider, { prefixCls: BRZ_PREFIX, direction: isRTL ? "rtl" : "ltr", renderEmpty: renderEmpty }, children));