@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.
14 lines (13 loc) • 819 B
TypeScript
import React from "react";
import { CardProps } from "./Card.types";
export declare const Card: React.ForwardRefExoticComponent<{
children: React.ReactNode;
shadow?: import("@mantine/core").MantineShadow | undefined;
withBorder?: boolean | undefined;
p?: import("@mantine/core").MantineNumberSize | undefined;
radius?: import("@mantine/core").MantineNumberSize | undefined;
sx?: import("@mantine/core").CSSObject | undefined;
} & import("../layout/layout.types").CommonLayoutProps & import("../styling.types").CommonStylingProps & React.RefAttributes<HTMLDivElement>>;
export declare const CardWithoutRef: ({ children, withBorder, p, radius, className, style, width, height, grow, ...props }: CardProps & {
innerRef: React.Ref<HTMLDivElement>;
}) => import("react/jsx-runtime").JSX.Element;