mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
18 lines
358 B
TypeScript
18 lines
358 B
TypeScript
export type ProgressbarData = {
|
|
size: number;
|
|
color: string;
|
|
tooltip?: {
|
|
title: string;
|
|
label: string;
|
|
// linkTitle?: string;
|
|
// linkPath?: string;
|
|
};
|
|
};
|
|
|
|
export type ProgressbarProps = {
|
|
maxSize: number;
|
|
data: Array<ProgressbarData>;
|
|
};
|
|
|
|
export { default as ProgressBar } from './ProgressBar.svelte';
|