mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-16 06:13:48 +02:00
7 lines
220 B
TypeScript
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" },
|
|
];
|