@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 316 B
TypeScript
interface GetRootClassNameInput {
rootSelector: string;
selector: string;
className: string | undefined;
}
/** Adds `className` to the list if given selector is root */
export declare function getRootClassName({ rootSelector, selector, className }: GetRootClassNameInput): string | undefined;
export {};