@mxenabled/mxui 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,4 @@
1
1
  import { default as React } from 'react';
2
- import { ToolbarProps } from '@mui/material/Toolbar';
3
2
  export type CopyObject = {
4
3
  close_aria?: string;
5
4
  title: string;
@@ -7,6 +6,6 @@ export type CopyObject = {
7
6
  type DialogHeaderProps = {
8
7
  copy: CopyObject;
9
8
  onClose: () => void;
10
- } & ToolbarProps;
9
+ };
11
10
  declare const DialogHeader: React.FC<DialogHeaderProps>;
12
11
  export default DialogHeader;
@@ -1,5 +1,4 @@
1
1
  import { default as React } from 'react';
2
- import { ToolbarProps } from '@mui/material/Toolbar';
3
2
  type FooterProps = {
4
3
  hasSecondaryAction?: boolean;
5
4
  isPrimaryDisabled?: boolean;
@@ -9,6 +8,6 @@ type FooterProps = {
9
8
  primaryText?: string;
10
9
  secondaryColor?: 'primary' | 'inherit' | 'secondary' | 'success' | 'error' | 'info' | 'warning';
11
10
  secondaryText?: string;
12
- } & ToolbarProps;
11
+ };
13
12
  declare const Footer: React.FC<FooterProps>;
14
13
  export default Footer;