@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 350 B
TypeScript
import { CSSProperties } from 'react';
import { MantineStyleProp } from '../../../../Box';
import { MantineTheme } from '../../../../MantineProvider';
interface ResolveStyleInput {
style: MantineStyleProp | undefined;
theme: MantineTheme;
}
export declare function resolveStyle({ style, theme }: ResolveStyleInput): CSSProperties;
export {};