LineHeight
type LineHeight =
| {
readonly value: number;
readonly unit: "PIXELS" | "PERCENT";
}
| {
readonly unit: "AUTO";
};
type LineHeight =
| {
readonly value: number;
readonly unit: "PIXELS" | "PERCENT";
}
| {
readonly unit: "AUTO";
};