@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.
16 lines (15 loc) • 494 B
TypeScript
import { MantineTheme } from "@mantine/core";
import { ChipProps } from "./Chip.types";
type StyleParams = {
color: NonNullable<ChipProps["color"]>;
size: NonNullable<ChipProps["size"]>;
variant: NonNullable<ChipProps["variant"]>;
};
export declare const useStyles: (params: StyleParams, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
root: string;
};
cx: (...args: any) => string;
theme: MantineTheme;
};
export {};