blob: a6c3e705c9a668dd733d2fee630320a65ead0091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import "./index.css";
export type { Text, I18nText } from "~src/common";
export { UiLogicError, c, convertI18nText, useC } from "~src/common";
export const themeColors = [
"primary",
"secondary",
"danger",
"create",
] as const;
export type ThemeColor = (typeof themeColors)[number];
export type ClickableColor = ThemeColor | "grayscale" | "light" | "minor";
export { breakpoints } from "./breakpoints";
export * as geometry from "~src/utilities/geometry";
export * as array from "~src/utilities/array"
|