UNPKG

@corejam/core-components

Version:

Corejam - Core Components

8 lines (7 loc) 237 B
export default { property: "grid-template-rows", transform: (value) => { if (isNaN(value) && value !== "none") throw new Error("Prop not valid"); return value === "none" ? "none" : `repeat(${value}, minmax(0, 1fr))`; }, };