Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/Card/Card.d.ts 1.53 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { DistributiveOmit } from '@mui/types';
  import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
  import { Theme } from "../styles/index.js";
  import { PaperOwnProps } from "../Paper/index.js";
  import { CardClasses } from "./cardClasses.js";
  
  // 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;