DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
410 Bytes
export function createBitAttrs(bit, parts) {
const attrs = {};
parts.forEach((part) => {
attrs[part] = {
[`data-${bit}-${part}`]: "",
};
});
return (part) => attrs[part];
}
export function disabledAttrs(disabled) {
return disabled
? { "aria-disabled": "true", "data-disabled": "" }
: { "aria-disabled": undefined, "data-disabled": undefined };
}