@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.
18 lines (17 loc) • 493 B
TypeScript
import { TabsPlacement } from "./Tabs.types";
type StyleParams = {
placement: TabsPlacement;
};
export declare const useStyles: (params: StyleParams, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
root: string;
tabIcon: string;
tabLabel: string;
tab: string;
panel: string;
tabsList: string;
};
cx: (...args: any) => string;
theme: import("@mantine/core").MantineTheme;
};
export {};