mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 03:10:55 +00:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
'use client';
|
|
function randomId(prefix = "mantine-") {
|
|
return `${prefix}${Math.random().toString(36).slice(2, 11)}`;
|
|
}
|
|
|
|
export { randomId };
|
|
//# sourceMappingURL=random-id.mjs.map
|