Zipline-Android-App/constants/settings.ts
2025-02-08 21:36:49 +01:00

7 lines
220 B
TypeScript

import type { SelectProps } from "@/components/Select";
export const alignments: SelectProps["data"] = [
{ label: "Left", value: "left" },
{ label: "Center", value: "center" },
{ label: "Right", value: "right" },
];