PanelSkeletonProps
The PanelSkeletonProps object is used to render a panel skeleton.
type PanelSkeletonProps = { label?: string; itemUri?: string; className?: string; style?: React.CSSProperties; children?: React.ReactNode;};Properties
| Property | Type | Description |
|---|---|---|
| label | string | undefined | Aria label for the panel. Does not set the panel header content. |
| itemUri | string | undefined | Item URI of the panel. Used as reference for Spotify’s internal Event Factory. |
| className | string | undefined | Additional class name to apply to the panel. Deprecated: Since Spotify 1.2.12 |
| style | React.CSSProperties | undefined | Additional styles to apply to the panel. |
| children | React.ReactNode | undefined | Children to render inside the panel. |