@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 504 B
TypeScript
import { GetStylesApiOptions } from '../../../styles-api.types';
interface GetVariantClassNameInput {
options: GetStylesApiOptions | undefined;
classes: Record<string, string>;
selector: string;
unstyled: boolean | undefined;
}
/** Returns variant className, variant is always separated from selector with `--`, for example, `tab--default` */
export declare function getVariantClassName({ options, classes, selector, unstyled, }: GetVariantClassNameInput): string | undefined;
export {};