@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.
17 lines (16 loc) • 464 B
TypeScript
import { MantineTheme } from "@mantine/core";
import { CalloutVariant } from "./Callout.types";
type StyleParams = {
variant: CalloutVariant;
};
export declare const useStyles: (params: StyleParams, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
root: string;
icon: string;
body: string;
title: string;
};
cx: (...args: any) => string;
theme: MantineTheme;
};
export {};