Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100090425
Toolbar.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jan 28, 03:30
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Jan 30, 03:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23873374
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Toolbar.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableStringUnion } from '@mui/types';
import { Theme } from '..';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { ToolbarClasses } from './toolbarClasses';
export interface ToolbarPropsVariantOverrides {}
export interface ToolbarTypeMap<P = {}, D extends React.ElementType = 'div'> {
props: P & {
/**
* The Toolbar children, usually a mixture of `IconButton`, `Button` and `Typography`.
* The Toolbar is a flex container, allowing flex item properites 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>;
};
defaultComponent: D;
}
/**
*
* 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<
D extends React.ElementType = ToolbarTypeMap['defaultComponent'],
P = {},
> = OverrideProps<ToolbarTypeMap<P, D>, D>;
export default Toolbar;
Event Timeline
Log In to Comment