mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-13 09:24:47 +08:00
16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
import { expectError, tailwindRunner } from "./runner";
|
|
|
|
tailwindRunner(
|
|
"Typography - Vertical Alignment",
|
|
expectError([
|
|
"align-baseline",
|
|
"align-top",
|
|
"align-middle",
|
|
"align-bottom",
|
|
"align-text-top",
|
|
"align-text-bottom",
|
|
"align-sub",
|
|
"align-super",
|
|
])
|
|
);
|