@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
13 lines (12 loc) • 457 B
TypeScript
import { MantineTheme } from '../../MantineProvider';
interface UseTransformedStylesInput {
props: Record<string, any>;
stylesCtx: Record<string, any> | undefined;
themeName: string[];
theme: MantineTheme;
}
export declare function useStylesTransform({ props, stylesCtx, themeName, theme, }: UseTransformedStylesInput): {
getTransformedStyles: (styles: any[]) => Record<string, string>[];
withStylesTransform: boolean;
};
export {};