@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.
15 lines (14 loc) • 525 B
TypeScript
import dayjs from "dayjs";
export declare const useStyles: (params: void, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
classes: {
AMPMButton: string;
};
cx: (...args: any) => string;
theme: import("@mantine/core").MantineTheme;
};
export declare const TimePicker: (props: {
renderText: string;
value: dayjs.Dayjs | undefined;
onChange: (d: dayjs.Dayjs | undefined) => void;
readOnly?: boolean | undefined;
}) => import("react/jsx-runtime").JSX.Element;