@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
22 lines (21 loc) • 734 B
TypeScript
import { Color } from '../types/colors';
export interface FProgressBarProps {
/**
* The progress bar value in percentage
*/
value?: number;
/**
* The color of the progress bar
*/
color?: Color;
/**
* The height of the progress bar
*/
height?: string | number;
}
declare const _default: import('vue').DefineComponent<FProgressBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FProgressBarProps> & Readonly<{}>, {
value: number;
color: Color;
height: string | number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;