blob: 4ad41edcc815888b696321cdeae6f89a9da41d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export type { Text, I18nText } from "@/common";
export { c, convertI18nText, useC } from "@/common";
export const themeColors = [
"primary",
"secondary",
"tertiary",
"danger",
"success",
] as const;
export type ThemeColor = (typeof themeColors)[number];
export { breakpoints } from "./breakpoints";
export { useMobile } from "./hooks";
|