1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-09 00:42:36 +00:00
primevue-mirror/packages/primevue/scripts/components/progressspinner.js
2024-06-11 13:21:12 +01:00

40 lines
1,002 B
JavaScript

const ProgressSpinnerProps = [
{
name: 'strokeWidth',
type: 'string',
default: '2',
description: 'Width of the circle stroke.'
},
{
name: 'fill',
type: 'string',
default: 'null',
description: 'Color for the background of the circle.'
},
{
name: 'animationDuration',
type: 'string',
default: '2s',
description: 'Duration of the rotate animation.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Used to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
}
];
module.exports = {
progressspinner: {
name: 'ProgressSpinner',
description: 'ProgressSpinner is a process status indicator',
props: ProgressSpinnerProps
}
};