@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 352 B
TypeScript
import { ReactNode } from 'react';
export interface OutputProgressBarModel {
title: string;
description: string;
textFlag: string;
colorFlag?: string;
itemText: string;
percentage: string;
colorBar?: string;
backgroundColorBar?: string;
/** Min 0 max 100 */
valueProgressBar: number;
children?: ReactNode;
}