@popmenu/common-ui 0.14.0 → 0.15.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.
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { BoxProps } from './BoxProps';
3
+ export declare const Box: FC<BoxProps>;
@@ -0,0 +1,5 @@
1
+ import { BoxProps as MuiBoxProps } from '@material-ui/core';
2
+ export interface BoxProps extends MuiBoxProps {
3
+ /** Sets the css gap property using thematic spacing units. */
4
+ gap?: number;
5
+ }
@@ -0,0 +1 @@
1
+ export declare const useBoxStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"root">;
@@ -1 +1,2 @@
1
- export { default, BoxProps } from '@material-ui/core/Box';
1
+ export { Box as default } from './Box';
2
+ export { BoxProps } from './BoxProps';