mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-17 23:05:59 +08:00
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import { generateTestsForScales, tailwindRunner } from "./runner";
|
|
|
|
const options: Record<string, string> = {
|
|
start: "flex-start",
|
|
end: "flex-end",
|
|
center: "center",
|
|
baseline: "baseline",
|
|
stretch: "stretch",
|
|
};
|
|
|
|
tailwindRunner(
|
|
"Layout - Align Items",
|
|
generateTestsForScales("items", Object.keys(options), (n) => ({
|
|
alignItems: options[n],
|
|
}))
|
|
);
|