Skip to content
On this page

NcLoadingIcon

Props

Prop nameDescriptionTypeValuesDefault
sizeSpecify the size of the loading icon.number-20
appearanceThe appearance of the loading icon.
'auto' adjusts to the Nextcloud color scheme,
'light' and 'dark' are static.
stringauto, light, dark'auto'
titleSpecify what is loading.string-''

Usage

<div>
	<NcLoadingIcon />
</div>
<div style="background-color: #171717;">
	<NcLoadingIcon :size="64" appearance="light" title="Loading on dark background" />
</div>
<div style="background-color: #fff;">
	<NcLoadingIcon :size="64" appearance="dark" title="Loading on light background" />
</div>