Skip to content

Commit

Permalink
fix: logic errors with checkbox's compound variants and fix alpha the…
Browse files Browse the repository at this point in the history
…me tokens (#69)
  • Loading branch information
artmsilva authored Mar 3, 2022
1 parent 5b57d13 commit 78d294b
Show file tree
Hide file tree
Showing 10 changed files with 2,524 additions and 419 deletions.
16 changes: 8 additions & 8 deletions app/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,20 @@ function HomePage() {
<HStack>
<>
<HStack>
<Checkbox checked={true} variant="primary" size="125" />
<Checkbox checked={true} variant="secondary" />
<Checkbox checked={true} variant="cta" />
<Checkbox defaultChecked checked variant="primary" size="125" />
<Checkbox defaultChecked checked variant="secondary" />
<Checkbox defaultChecked checked variant="cta" />
</HStack>
<HStack>
<Checkbox checked={true} size="087" />
<Checkbox checked={true} size="125" />
<Checkbox defaultChecked checked size="087" />
<Checkbox defaultChecked checked size="125" />
</HStack>
<HStack>
<Checkbox checked={true} />
<Checkbox checked={true} isOutline />
<Checkbox defaultChecked checked />
<Checkbox defaultChecked checked isOutline />
</HStack>
<HStack>
<Checkbox checked={true} />
<Checkbox defaultChecked checked />
<Checkbox checked={false} />
<Checkbox checked="indeterminate" />
</HStack>
Expand Down
Loading

1 comment on commit 78d294b

@vercel
Copy link

@vercel vercel bot commented on 78d294b Mar 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.