UNPKG

@brizy/ui

Version:
5 lines (4 loc) 334 B
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));