@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
12 lines (11 loc) • 536 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { ImageProps } from "./image.types.js";
import "../index.js";
//#region src/image/image.d.ts
declare const ImageBase: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, SystemProps, never>;
/** Displays an image. Includes base styling. */
declare const Image: VuiComponent<"img", ImageProps>;
//#endregion
export { Image, Image as default, ImageBase };
//# sourceMappingURL=image.d.ts.map