We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c3e4b1 commit d9108ebCopy full SHA for d9108eb
2 files changed
src/components/Badge/types/BadgeProps.ts
@@ -2,7 +2,7 @@ import { PropsWithChildren } from "react";
2
import { SIZE } from "../../../types/constants";
3
import { BadgeColorType } from "./BadgeColors";
4
5
-export type BadgeSize = Exclude<SIZE, "medium">;
+export type BadgeSize = Exclude<SIZE, "default">;
6
export default interface BadgeProps extends PropsWithChildren {
7
outline?: boolean;
8
size?: BadgeSize;
src/components/Checkbox/types/CheckboxProps.ts
@@ -2,7 +2,7 @@ import { ChangeEvent } from "react";
export default interface CheckboxProps {
name: string;
- // size?: "small" | "medium" | "large";
+ // size?: "small" | "default" | "large";
label?: string;
disabled?: boolean;
defaultChecked?: boolean;
0 commit comments