@@ -60,38 +60,22 @@ export type CardHeaderSlotsAndSlotProps = CreateSlotsAndSlotProps<
6060 * Props forwarded to the root slot.
6161 * By default, the avaible props are based on the div element.
6262 */
63- root : SlotProps <
64- React . ElementType < React . DetailsHTMLAttributes < HTMLDivElement > > ,
65- CardHeaderRootSlotPropsOverrides ,
66- CardHeaderOwnerState
67- > ;
63+ root : SlotProps < 'div' , CardHeaderRootSlotPropsOverrides , CardHeaderOwnerState > ;
6864 /**
6965 * Props forwarded to the avatar slot.
7066 * By default, the avaible props are based on the div element.
7167 */
72- avatar : SlotProps <
73- React . ElementType < React . DetailsHTMLAttributes < HTMLDivElement > > ,
74- CardHeaderAvatarSlotPropsOverrides ,
75- CardHeaderOwnerState
76- > ;
68+ avatar : SlotProps < 'div' , CardHeaderAvatarSlotPropsOverrides , CardHeaderOwnerState > ;
7769 /**
7870 * Props forwarded to the action slot.
7971 * By default, the avaible props are based on the div element.
8072 */
81- action : SlotProps <
82- React . ElementType < React . DetailsHTMLAttributes < HTMLDivElement > > ,
83- CardHeaderActionSlotPropsOverrides ,
84- CardHeaderOwnerState
85- > ;
73+ action : SlotProps < 'div' , CardHeaderActionSlotPropsOverrides , CardHeaderOwnerState > ;
8674 /**
8775 * Props forwarded to the content slot.
8876 * By default, the avaible props are based on the div element.
8977 */
90- content : SlotProps <
91- React . ElementType < React . DetailsHTMLAttributes < HTMLDivElement > > ,
92- CardHeaderContentSlotPropsOverrides ,
93- CardHeaderOwnerState
94- > ;
78+ content : SlotProps < 'div' , CardHeaderContentSlotPropsOverrides , CardHeaderOwnerState > ;
9579 /**
9680 * Props forwarded to the title slot (as long as disableTypography is not `true`).
9781 * By default, the avaible props are based on the [Typography](https://mui.com/material-ui/api/typography/#props) component.
0 commit comments