laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
13 lines (12 loc) • 321 B
JavaScript
"use client";
function n(t) {
const e = t.options.listItemIndent || "one";
if (e !== "tab" && e !== "one" && e !== "mixed")
throw new Error(
"Cannot serialize items with `" + e + "` for `options.listItemIndent`, expected `tab`, `one`, or `mixed`"
);
return e;
}
export {
n as checkListItemIndent
};