diff options
Diffstat (limited to 'vid-webpack-master/src/app/shared/components/customButton/models')
-rw-r--r-- | vid-webpack-master/src/app/shared/components/customButton/models/mode.model.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/shared/components/customButton/models/mode.model.ts b/vid-webpack-master/src/app/shared/components/customButton/models/mode.model.ts new file mode 100644 index 000000000..c8a7ddef3 --- /dev/null +++ b/vid-webpack-master/src/app/shared/components/customButton/models/mode.model.ts @@ -0,0 +1,10 @@ +export enum Mode { + primary = 'primary', + primary2 = 'primary2', + secondary = 'secondary', + success = 'success', + error = 'error', + warning = 'warning', + info = 'info', + white = 'white' +} |