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

57
frontend/node_modules/@mui/material/Card/Card.d.ts generated vendored Normal file
View File

@@ -0,0 +1,57 @@
import * as React from 'react';
import { SxProps } from '@mui/system';
import { DistributiveOmit } from '@mui/types';
import { OverridableComponent, OverrideProps } from '@mui/material/OverridableComponent';
import { Theme } from '..';
import { PaperOwnProps } from '../Paper';
import { CardClasses } from './cardClasses';
// TODO: v6 remove this interface, it is not used
export interface CardPropsColorOverrides {}
export interface CardOwnProps extends DistributiveOmit<PaperOwnProps, 'classes'> {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<CardClasses>;
/**
* If `true`, the card will use raised styling.
* @default false
*/
raised?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export interface CardTypeMap<
AdditionalProps = {},
RootComponent extends React.ElementType = 'div',
> {
props: AdditionalProps & CardOwnProps;
defaultComponent: RootComponent;
}
/**
*
* Demos:
*
* - [Card](https://mui.com/material-ui/react-card/)
*
* API:
*
* - [Card API](https://mui.com/material-ui/api/card/)
* - inherits [Paper API](https://mui.com/material-ui/api/paper/)
*/
declare const Card: OverridableComponent<CardTypeMap>;
export type CardProps<
RootComponent extends React.ElementType = CardTypeMap['defaultComponent'],
AdditionalProps = {},
> = OverrideProps<CardTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
component?: React.ElementType;
};
export default Card;