Skip to content

Commit

Permalink
fix(theme): making checkbox icon checked optional (#4255)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanksdesign authored Jul 18, 2023
1 parent afbacb7 commit f2ff87f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui/src/theme/tokens/components/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ type ButtonToken<Output> = DesignTokenProperties<
};

type IconCheckedStateToken<Output> = DesignTokenProperties<
'opacity' | 'transform'
'opacity' | 'transform',
Output
> & {
_disabled?: DesignTokenProperties<'backgroundColor', Output>;
};
Expand Down

0 comments on commit f2ff87f

Please sign in to comment.