Initial commit: Crypto trader application

This commit is contained in:
2025-12-25 20:20:40 -05:00
commit 07a04c1bb8
47895 changed files with 2042266 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
'use client';
import PropTypes from 'prop-types';
import { createGrid as createGrid2 } from '@mui/system/Unstable_Grid';
import { styled } from '../styles';
import { useDefaultProps } from '../DefaultPropsProvider';
var Grid2 = createGrid2({
createStyledComponent: styled('div', {
name: 'MuiGrid2',
slot: 'Root',
overridesResolver: function overridesResolver(props, styles) {
return styles.root;
}
}),
componentName: 'MuiGrid2',
useThemeProps: function useThemeProps(inProps) {
return useDefaultProps({
props: inProps,
name: 'MuiGrid2'
});
}
});
process.env.NODE_ENV !== "production" ? Grid2.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* @ignore
*/
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
} : void 0;
export default Grid2;

View File

@@ -0,0 +1 @@
export {};

View File

@@ -0,0 +1,28 @@
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
import generateUtilityClass from '@mui/utils/generateUtilityClass';
export function getGrid2UtilityClass(slot) {
return generateUtilityClass('MuiGrid2', slot);
}
var SPACINGS = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var DIRECTIONS = ['column-reverse', 'column', 'row-reverse', 'row'];
var WRAPS = ['nowrap', 'wrap-reverse', 'wrap'];
var GRID_SIZES = ['auto', true, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
var grid2Classes = generateUtilityClasses('MuiGrid2', ['root', 'container', 'item', 'zeroMinWidth'].concat(_toConsumableArray(SPACINGS.map(function (spacing) {
return "spacing-xs-".concat(spacing);
})), _toConsumableArray(DIRECTIONS.map(function (direction) {
return "direction-xs-".concat(direction);
})), _toConsumableArray(WRAPS.map(function (wrap) {
return "wrap-xs-".concat(wrap);
})), _toConsumableArray(GRID_SIZES.map(function (size) {
return "grid-xs-".concat(size);
})), _toConsumableArray(GRID_SIZES.map(function (size) {
return "grid-sm-".concat(size);
})), _toConsumableArray(GRID_SIZES.map(function (size) {
return "grid-md-".concat(size);
})), _toConsumableArray(GRID_SIZES.map(function (size) {
return "grid-lg-".concat(size);
})), _toConsumableArray(GRID_SIZES.map(function (size) {
return "grid-xl-".concat(size);
}))));
export default grid2Classes;

View File

@@ -0,0 +1,6 @@
'use client';
export { default } from './Grid2';
export * from './Grid2Props';
export { default as grid2Classes } from './grid2Classes';
export * from './grid2Classes';