Skip to content

Commit d9108eb

Browse files
author
DylanBulmer
committed
fix npm build pipeline
1 parent 1c3e4b1 commit d9108eb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Badge/types/BadgeProps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { PropsWithChildren } from "react";
22
import { SIZE } from "../../../types/constants";
33
import { BadgeColorType } from "./BadgeColors";
44

5-
export type BadgeSize = Exclude<SIZE, "medium">;
5+
export type BadgeSize = Exclude<SIZE, "default">;
66
export default interface BadgeProps extends PropsWithChildren {
77
outline?: boolean;
88
size?: BadgeSize;

src/components/Checkbox/types/CheckboxProps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ChangeEvent } from "react";
22

33
export default interface CheckboxProps {
44
name: string;
5-
// size?: "small" | "medium" | "large";
5+
// size?: "small" | "default" | "large";
66
label?: string;
77
disabled?: boolean;
88
defaultChecked?: boolean;

0 commit comments

Comments
 (0)