"use client"; import { App, ConfigProvider } from "antd" export let displayError: (messageTxt: string, severity: "error" | "success") => void; export let showLoader: (messageTxt: boolean) => void; export let appTheme: object; type propsType = { colorPrimary?: string, children?: any } export default function MasterContainer({ colorPrimary, children }: propsType) { appTheme = { components: { Button: { colorPrimary: colorPrimary || '#13999e', borderRadius: 4, fontSize: 16, algorithm: true, // Enable algorithm }, Input: { colorPrimary: colorPrimary || '#13999e', borderRadius: 0, algorithm: true, // Enable algorithm }, Switch: { colorPrimary: colorPrimary || '#13999e', algorithm: true, // Enable algorithm }, Select: { colorPrimary: colorPrimary || '#13999e', borderRadius: 0, algorithm: true, // Enable algorithm }, DatePicker: { colorPrimary: colorPrimary || '#13999e', borderRadius: 0, algorithm: true, // Enable algorithm }, Tabs: { colorPrimary: colorPrimary || '#13999e', algorithm: true, // Enable algorithm }, Checkbox: { colorPrimary: colorPrimary || '#13999e', borderRadius: 0, algorithm: true, // Enable algorithm }, Pagination: { colorPrimary: colorPrimary || '#13999e', borderRadius: 4, algorithm: true, // Enable algorithm }, Radio: { colorPrimary: colorPrimary || '#13999e', algorithm: true, // Enable algorithm }, Upload: { colorPrimary: colorPrimary || '#13999e', algorithm: true, // Enable algorithm }, token: { colorPrimary: colorPrimary || '#13999e' }, }, } return <> {children} }