Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion packages/mui-material/src/AppBar/AppBar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ import { ExtendPaperTypeMap } from '../Paper/Paper';
export interface AppBarPropsColorOverrides {}

export interface AppBarOwnProps {
/**
* Shadow depth, corresponds to `dp` in the spec.
* It accepts values between 0 and 24 inclusive.
* @default 4
*/
elevation?: number;
/**
* If `false`, rounded corners are enabled.
* @default true
*/
square?: boolean;
/**
* Override or extend the styles applied to the component.
*/
Expand Down Expand Up @@ -49,7 +60,7 @@ export type AppBarTypeMap<
props: AdditionalProps & AppBarOwnProps;
defaultComponent: RootComponent;
},
'position' | 'color' | 'classes'
'position' | 'color' | 'classes' | 'elevation' | 'square'
>;

/**
Expand Down
Loading