From 9a4957631efdf384a48ba42d8eb810028f2667f5 Mon Sep 17 00:00:00 2001 From: Peace Date: Wed, 3 Sep 2025 23:37:24 +0900 Subject: [PATCH] mfe --- mobile/components/ui/gluestack-ui-token.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mobile/components/ui/gluestack-ui-token.ts diff --git a/mobile/components/ui/gluestack-ui-token.ts b/mobile/components/ui/gluestack-ui-token.ts new file mode 100644 index 0000000..1d9fc24 --- /dev/null +++ b/mobile/components/ui/gluestack-ui-token.ts @@ -0,0 +1,19 @@ +export const GS = { + size: { + xs: "xs", + sm: "sm", + md: "md", + lg: "lg", + }, + variant: { + solid: "solid", + outline: "outline", + link: "link", + }, + action: { + primary: "primary", + secondary: "secondary", + positive: "positive", + negative: "negative", + }, +} as const;