export function elementName(key) {
    assert(`elementName takes a string as an argument, you passed ${typeof key} ${key}`, typeof key === 'string' && key.trim().length);

    return `.--svg-clock__${dasherize(key)}`;
}