feat(core): add popover component (#615)

This commit is contained in:
rahim
2026-02-28 00:33:30 -08:00
committed by GitHub
parent c92a9f914f
commit 44188d4823
20 changed files with 1663 additions and 2 deletions
+4
View File
@@ -5,3 +5,7 @@ export function pascalCase(str: string): string {
export function camelCase(str: string): string {
return pascalCase(str).replace(/^(.)/, (_, c) => c.toLowerCase());
}
export function kebabCase(str: string): string {
return str.replace(/[A-Z]/g, (m) => `-${m.toLowerCase()}`);
}