Skip to content

Commit

Permalink
Fix button variant type
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfisher72 committed Oct 8, 2024
1 parent 410eca4 commit 9662c8e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import { FONT_WEIGHTS, FONT_SIZES } from '../Typography/Typography';
export type ButtonVariant =
| 'filled'
| 'outlined'
| 'text'
| 'elevated'
| 'tonal';
//Jonathan 10/8/24 - commenting these out since they cause an error. Other button variants are missing from theme maps below
// | 'text'
// | 'elevated'
// | 'tonal';
export type ButtonState =
| ''
| '&:active'
Expand Down

0 comments on commit 9662c8e

Please sign in to comment.