paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

1
node_modules/@mui/system/shadows/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './shadows';

1
node_modules/@mui/system/shadows/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from "./shadows.js";

6
node_modules/@mui/system/shadows/package.json generated vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"sideEffects": false,
"module": "./index.js",
"main": "../node/shadows/index.js",
"types": "./index.d.ts"
}

3
node_modules/@mui/system/shadows/shadows.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { PropsFor, shadows } from '../Box';
export type ShadowsProps = PropsFor<typeof shadows>;

6
node_modules/@mui/system/shadows/shadows.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
import style from "../style/index.js";
const boxShadow = style({
prop: 'boxShadow',
themeKey: 'shadows'
});
export default boxShadow;