@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.
16 lines (15 loc) • 1.06 kB
TypeScript
/// <reference types="react" />
import { Props } from "./Image.types";
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, {
src: string;
imageWidth?: string | number | undefined;
imageHeight?: string | number | undefined;
alt?: string | undefined;
radius?: import("@mantine/styles").MantineSize | undefined;
caption?: import("react").ReactNode;
fit?: "contain" | "cover" | undefined;
} & import("../layout/layout.types").CommonLayoutProps & import("../styling.types").CommonStylingProps & import("react").RefAttributes<HTMLDivElement>>;
export default _default;
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Props>;
export declare const WithCaption: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Props>;
export declare const CustomSize: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, Props>;