Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
export declare const mergeClassesCachedResults: Record<string, string>;
/**
* Function can take any number of arguments, joins classes together and deduplicates atomic declarations generated by
* `makeStyles()`. Handles scoped directional styles.
*
* Classnames can be of any length, this function can take both atomic declarations and class names.
*
* Input:
* ```
* // not real classes
* mergeClasses('ui-button', 'displayflex', 'displaygrid')
* ```
*
* Output:
* ```
* 'ui-button displaygrid'
* ```
*/
export declare function mergeClasses(...classNames: (string | false | undefined)[]): string;