Skip to content

Commit 44214b0

Browse files
author
Hyunje Jun
committed
Minor fix in types
1 parent 59d1e87 commit 44214b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ export type FlexButton = {
264264
flex?: number;
265265
margin?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
266266
height?: "sm" | "md";
267-
style?: "link" | "secondary" | "primary";
267+
style?: "link" | "primary" | "secondary";
268268
color?: string;
269269
gravity?: "top" | "bottom" | "center";
270270
};
@@ -336,7 +336,7 @@ export type FlexSeparator = {
336336

337337
export type FlexSpacer = {
338338
type: "spacer";
339-
size?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
339+
size: "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
340340
};
341341

342342
export type FlexText = {

0 commit comments

Comments
 (0)