Convert a string to kebab-case Example: "MyComponent" -> "my-component"
String kebabCase(String input) => ReCase(input).paramCase;