@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
23 lines (22 loc) • 728 B
TypeScript
import { MantineSize } from "@mantine/core";
type StyleParams = {
size: MantineSize;
};
export declare const useParagraphStyles: (params: StyleParams, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
paragraph: string;
};
cx: (...args: any) => string;
theme: import("@mantine/core").MantineTheme;
};
export declare const useRawTextStyles: (params: {
size: MantineSize;
}, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
root: string;
};
cx: (...args: any) => string;
theme: import("@mantine/core").MantineTheme;
};
export declare const useTextWeight: (size: MantineSize) => number;
export {};