worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
20
node_modules/@mui/material/Box/Box.d.ts
generated
vendored
Normal file
20
node_modules/@mui/material/Box/Box.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { BoxTypeMap } from '@mui/system';
|
||||
import { OverridableComponent } from '@mui/types';
|
||||
import { OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { Theme as MaterialTheme } from "../styles/index.js";
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Box](https://mui.com/material-ui/react-box/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Box API](https://mui.com/material-ui/api/box/)
|
||||
*/
|
||||
declare const Box: OverridableComponent<BoxTypeMap<{}, 'div', MaterialTheme>>;
|
||||
export type BoxProps<RootComponent extends React.ElementType = BoxTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<BoxTypeMap<AdditionalProps, RootComponent, MaterialTheme>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default Box;
|
||||
Loading…
Add table
Add a link
Reference in a new issue