UNPKG

@corejam/core-components

Version:

Corejam - Core Components

9 lines (8 loc) 233 B
export default { property: "object-fit", transform: (value) => { const valids = ["cover", "contain", "fill", "none", "scale-down"]; if (valids.includes(value)) return value; throw new Error("Prop not valid"); }, };