Fix typo in LoadingIndicator docblock

This commit is contained in:
David Wheatley 2021-05-09 22:33:33 +01:00 committed by GitHub
parent 915351baec
commit 6d9bb709c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ import classList from '../utils/classList';
export interface LoadingIndicatorAttrs extends ComponentAttrs {
/**
* Custom classes fro the loading indicator's container.
* Custom classes for the loading indicator's container.
*/
className?: string;
/**
@ -11,7 +11,7 @@ export interface LoadingIndicatorAttrs extends ComponentAttrs {
*/
containerClassName?: string;
/**
* Optional size to specify for the loading indicator.
* Optional size for the loading indicator.
*/
size?: 'large' | 'medium' | 'small';
/**