worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
48
node_modules/@mui/material/ImageListItem/ImageListItem.d.ts
generated
vendored
Normal file
48
node_modules/@mui/material/ImageListItem/ImageListItem.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { ImageListItemClasses } from "./imageListItemClasses.js";
|
||||
export interface ImageListItemOwnProps {
|
||||
/**
|
||||
* The content of the component, normally an `<img>`.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<ImageListItemClasses>;
|
||||
/**
|
||||
* Width of the item in number of grid columns.
|
||||
* @default 1
|
||||
*/
|
||||
cols?: number;
|
||||
/**
|
||||
* Height of the item in number of grid rows.
|
||||
* @default 1
|
||||
*/
|
||||
rows?: number;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export interface ImageListItemTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'li'> {
|
||||
props: AdditionalProps & ImageListItemOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Image List](https://mui.com/material-ui/react-image-list/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [ImageListItem API](https://mui.com/material-ui/api/image-list-item/)
|
||||
*/
|
||||
declare const ImageListItem: OverridableComponent<ImageListItemTypeMap>;
|
||||
export type ImageListItemProps<RootComponent extends React.ElementType = ImageListItemTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<ImageListItemTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default ImageListItem;
|
||||
Loading…
Add table
Add a link
Reference in a new issue