@churchapps/apphelper
Version:
Library of helper functions for React and NextJS ChurchApps
28 lines • 717 B
TypeScript
import React from "react";
declare module "@mui/material/styles" {
interface Palette {
InputBox: {
headerText: string;
};
}
interface PaletteOptions {
InputBox?: {
headerText?: string;
};
}
}
interface Props {
id?: string;
children: React.ReactNode;
headerIcon?: string;
headerText: string;
editFunction?: () => void;
editContent?: React.ReactNode;
"data-testid"?: string;
ariaLabel?: string;
footerContent?: React.ReactNode;
help?: string;
}
export declare const DisplayBox: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
export {};
//# sourceMappingURL=DisplayBox.d.ts.map