@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) • 752 B
TypeScript
import { DividerProps as MantineDividerProps } from "@mantine/core";
import { CommonLayoutProps } from "../../components/layout/layout.types";
import { CommonStylingProps } from "../../components/styling.types";
import { Color } from "../../components/theme/colors";
export type DividerProps = Omit<MantineDividerProps, "color"> & {
/**
* Color of the divider.
* @default gray.2
*/
color?: Color;
} & CommonLayoutProps & CommonStylingProps;
export declare const DividerComponent: ({ color, className, style, width, height, grow, ...props }: DividerProps) => import("react/jsx-runtime").JSX.Element;
export declare const Divider: {
(props: DividerProps): import("react/jsx-runtime").JSX.Element;
componentName: string;
};