PanelContentProps
The PanelContentProps object is used to render a panel content wrapper.
note
This type is deducted from Spotify's internal usage. It may not be accurate and may change in the future.
type PanelContentProps = {
className?: string;
children?: React.ReactNode;
};
Properties
| Property | Type | Description |
|---|---|---|
| className | string | undefined | Additional class name to apply to the panel. |
| children | React.ReactNode | undefined | Children to render inside the panel. |