You need to add a theme
prop to your component props interface:
interface Theme {}
export interface ILoadingBarComponent {
progress: number
appearance?: string
onFinish(finished: Promise<string>): void
theme: Theme
}
You need to add a theme
prop to your component props interface:
interface Theme {}
export interface ILoadingBarComponent {
progress: number
appearance?: string
onFinish(finished: Promise<string>): void
theme: Theme
}