@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 370 B
TypeScript
interface UseTransformedStylesInput {
props: Record<string, any>;
stylesCtx: Record<string, any> | undefined;
themeName: string[];
}
export declare function useStylesTransform({ props, stylesCtx, themeName }: UseTransformedStylesInput): {
getTransformedStyles: (styles: any[]) => Record<string, string>[];
withStylesTransform: boolean;
};
export {};