Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
352 Bytes
/* eslint-disable max-len */
export const getDataCss = (...args: (string | number)[]) => args.join('-')
export const getResourceElementCss = (resourceId: string, suffix: string) => getDataCss(resourceId, suffix)
export const getActionElementCss = (resourceId: string, actionName: string, suffix: string) => getDataCss(resourceId, actionName, suffix)