@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.
24 lines (23 loc) • 1.55 kB
TypeScript
/// <reference types="react" />
import { Props } from "./Link.types";
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, {
href: string | import("../..").NavigateParams;
newTab?: boolean | undefined;
} & import("../styling.types").CommonStylingProps & {
disableMarkdown?: boolean | undefined;
} & {
children: import("react").ReactNode;
size?: import("@mantine/styles").MantineSize | undefined;
color?: import("../theme/colors").Color | undefined;
lineClamp?: number | undefined;
weight?: import("../theme/typography").FontWeight | undefined;
transform?: import("csstype").Property.TextTransform | undefined;
align?: import("csstype").Property.TextAlign | undefined;
italic?: boolean | undefined;
underline?: boolean | undefined;
strikethrough?: boolean | undefined;
sx?: import("@mantine/styles").CSSObject | undefined;
} & import("../layout/layout.types").CommonLayoutProps & Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref" | keyof import("../styling.types").CommonStylingProps | "href" | "newTab"> & import("react").RefAttributes<HTMLAnchorElement>>;
export default _default;
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Props>;
export declare const CustomText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Props>;