lucide-react
Version:
A Lucide icon library package for React applications.
17 lines (13 loc) • 434 B
JavaScript
/**
* @license lucide-react v0.563.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { toCamelCase } from './toCamelCase.js';
const toPascalCase = (string) => {
const camelCase = toCamelCase(string);
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
};
export { toPascalCase };
//# sourceMappingURL=toPascalCase.js.map