-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review some and clean up in the interfaces (#133)
* moved avatar interface to global * removed unused import * moved IDefaultAvatar to global, and renamed from DefaultAvatarProps * Typoghraphy constants: Update avatar component typography constants * Add typography constants * Add typography constants --------- Co-authored-by: bally <[email protected]>
- Loading branch information
1 parent
d862de9
commit 406370c
Showing
5 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export enum TYPOGRAPHY { | ||
H0 = 'h0', | ||
H1 = 'h1', | ||
H2 = 'h2', | ||
H3 = 'h3', | ||
H4 = 'h4', | ||
H5 = 'h5', | ||
H6 = 'h6', | ||
H7 = 'h7', | ||
BODY1 = 'body1', | ||
BODY2 = 'body2', | ||
SUBTITLE1 = 'subtitle1', | ||
SUBTITLE2 = 'subtitle2', | ||
OVERLINE = 'overline', | ||
CAPTION = 'caption', | ||
BUTTON = 'button', | ||
PARAGRAPH = 'paragraph' | ||
} | ||
|
||
export enum FONTWEIGHT { | ||
NORMAL = 'normal', | ||
LIGHT = 'light', | ||
REGULAR = 'regular', | ||
MEDIUM = 'medium', | ||
BOLD = 'bold', | ||
BLACK = 'black' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters