-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(checkbox): Added scale * chore(checkbox): Renamed function Co-authored-by: RabbitDoge <72658581+RabbitDoge@users.noreply.github.com>
- Loading branch information
1 parent
60e6e41
commit 0c1d224
Showing
3 changed files
with
36 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export const scales = { | ||
SM: "sm", | ||
MD: "md", | ||
} as const; | ||
|
||
export type Scales = typeof scales[keyof typeof scales]; | ||
|
||
export interface CheckboxProps { | ||
scale?: Scales; | ||
} |