This commit is contained in:
@@ -2,15 +2,15 @@ import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||
|
||||
type Props = {
|
||||
title?: String,
|
||||
title?: string,
|
||||
icon: IconDefinition,
|
||||
description: String,
|
||||
animation?: String,
|
||||
description: string,
|
||||
animation?: string,
|
||||
}
|
||||
|
||||
function Loader(props: Props) {
|
||||
function Loader(props: Readonly<Props>) {
|
||||
return <div className='loader'>
|
||||
<h1>{props.title || 'Prosím čekejte...'}</h1>
|
||||
<h1>{props.title ?? 'Prosím čekejte...'}</h1>
|
||||
<FontAwesomeIcon icon={props.icon} className={`loader-icon mb-3 ` + (props.animation ?? '')} />
|
||||
<p>{props.description}</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user