Skip to content

Commit

Permalink
feat: add common enums for button theme
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Oct 30, 2023
1 parent 3feb784 commit 4b9b9b0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/wallet-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"devDependencies": {
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vechain/repo-config": "https://github.com/vechainfoundation/repo-config#v0.0.1",
"eslint": "*",
"tsup": "*",
"typescript": "*"
Expand Down
1 change: 1 addition & 0 deletions packages/wallet-kit/src/constants/enums/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './theme';
8 changes: 8 additions & 0 deletions packages/wallet-kit/src/constants/enums/theme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const ThemeMode = {
Light: 'LIGHT',
Dark: 'DARK',
};

export const Theme = {
Default: 'DEFAULT',
};
1 change: 1 addition & 0 deletions packages/wallet-kit/src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './enums';
1 change: 1 addition & 0 deletions packages/wallet-kit/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './connex';
export * from './wallet';
export * from './constants';

export type { ConnexOptions, ConnexInstance, ConnexSigner } from './types';

0 comments on commit 4b9b9b0

Please sign in to comment.