worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
14
node_modules/@mui/system/styleFunctionSx/defaultSxConfig.d.ts
generated
vendored
Normal file
14
node_modules/@mui/system/styleFunctionSx/defaultSxConfig.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { StyleFunction, TransformFunction } from "../style/index.js";
|
||||
type SimpleStyleFunction<PropKey extends keyof any> = StyleFunction<Partial<Record<PropKey, any>>>;
|
||||
export interface SxConfigRecord {
|
||||
cssProperty?: keyof React.CSSProperties | false;
|
||||
/**
|
||||
* dot access in `Theme`
|
||||
*/
|
||||
themeKey?: string;
|
||||
transform?: TransformFunction;
|
||||
style?: SimpleStyleFunction<any>;
|
||||
}
|
||||
export type SxConfig = Record<string, SxConfigRecord>;
|
||||
declare const defaultSxConfig: SxConfig;
|
||||
export default defaultSxConfig;
|
||||
Loading…
Add table
Add a link
Reference in a new issue