worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
51
node_modules/@mui/material/esm/Toolbar/Toolbar.d.ts
generated
vendored
Normal file
51
node_modules/@mui/material/esm/Toolbar/Toolbar.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { ToolbarClasses } from "./toolbarClasses.js";
|
||||
export interface ToolbarPropsVariantOverrides {}
|
||||
export interface ToolbarOwnProps {
|
||||
/**
|
||||
* The Toolbar children, usually a mixture of `IconButton`, `Button` and `Typography`.
|
||||
* The Toolbar is a flex container, allowing flex item properties to be used to lay out the children.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<ToolbarClasses>;
|
||||
/**
|
||||
* If `true`, disables gutter padding.
|
||||
* @default false
|
||||
*/
|
||||
disableGutters?: boolean;
|
||||
/**
|
||||
* The variant to use.
|
||||
* @default 'regular'
|
||||
*/
|
||||
variant?: OverridableStringUnion<'regular' | 'dense', ToolbarPropsVariantOverrides>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export interface ToolbarTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'div'> {
|
||||
props: AdditionalProps & ToolbarOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [App Bar](https://mui.com/material-ui/react-app-bar/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Toolbar API](https://mui.com/material-ui/api/toolbar/)
|
||||
*/
|
||||
declare const Toolbar: OverridableComponent<ToolbarTypeMap>;
|
||||
export type ToolbarProps<RootComponent extends React.ElementType = ToolbarTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<ToolbarTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default Toolbar;
|
||||
Loading…
Add table
Add a link
Reference in a new issue