import { CustomizeContext } from "../../providers/CustomizeProvider"; import { ReactNode, useContext } from "react"; import { AlertTriangle } from "react-feather"; export const DisclaimerBox = ({ children, showIcon = false, }: { children: ReactNode; showIcon?: boolean; }) => { const customSettings = useContext(CustomizeContext); const { borderRadius } = customSettings.customization; return (
{showIcon && (
{" "}
)}

{children}

); };