File size: 352 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
/* 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)
|