aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/common.ts
blob: 7af2643bb92e3f81999292d4cc8343654197e142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export type { Text, I18nText } from "@/common";
export { c, convertI18nText, useC } from "@/common";

export const themeColors = [
  "primary",
  "secondary",
  "danger",
  "create",
] as const;

export type ThemeColor = (typeof themeColors)[number];

export { breakpoints } from "./breakpoints";
export { useMobile } from "./hooks";