Spaces:
Sleeping
Sleeping
File size: 158 Bytes
05c5ed5 | 1 2 3 4 5 6 7 | export const sanitizeCssVariableName = (label: string) => {
return label
.replaceAll(" ", "")
.toLowerCase()
.replace(/[^a-z0-9\-_]/g, "_");
};
|