Skip to content

Commit

Permalink
* progress: add progress bar component.
Browse files Browse the repository at this point in the history
  • Loading branch information
catouse committed Jul 9, 2024
1 parent 476f2fc commit 54a3853
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/progress/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import './components/share';
import './vanilla';
import './style';
11 changes: 11 additions & 0 deletions lib/progress/src/vanilla/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import {ComponentFromReact} from '@zui/core';
import {ProgressBar as ProgressBarReact} from '../components';
import {ProgressBarOptions} from '../types';

export class ProgressBar extends ComponentFromReact<ProgressBarOptions, ProgressBarReact> {
static NAME = 'ProgressBar';

static Component = ProgressBarReact;
}

ProgressBar.register();

0 comments on commit 54a3853

Please sign in to comment.