-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add core button variants #190
base: master
Are you sure you want to change the base?
Conversation
d2dcb42
to
eaf007c
Compare
Codecov Report
@@ Coverage Diff @@
## master #190 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 39 39
Lines 234 236 +2
Branches 67 69 +2
=========================================
+ Hits 234 236 +2
Continue to review full report at Codecov.
|
@@ -7,6 +7,7 @@ import { Spinner } from './Spinner'; | |||
interface OwnProps { | |||
compact?: boolean; | |||
loading?: boolean; | |||
fullwidth?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fullwidth?: boolean; | |
fullWidth?: boolean; |
fill={get(theme.colors, (fill as keyof Theme['colors']) as string) || fill} | ||
sx={{ fill: get(theme.colors, (fill as keyof Theme['colors']) as string) || fill }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the reason for this?
@@ -299,6 +305,36 @@ export const theme = { | |||
} | |||
} | |||
}, | |||
warning: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add this to Storybook?
@@ -299,6 +305,36 @@ export const theme = { | |||
} | |||
} | |||
}, | |||
warning: { | |||
cursor: 'pointer', | |||
background: '', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
No description provided.