export const toLowerCaseFirst = (str: string) => str.charAt(0).toLowerCase() + str.slice(1);