UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

13 lines (12 loc) 405 B
import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { SystemProps } from "../system/system.js"; import "../system/index.js"; //#region src/image/image.types.d.ts type ImageProps = SystemProps & ThemingProps<'Image'> & { /** Children are disabled for this component. */ children?: never; }; //#endregion export { ImageProps }; //# sourceMappingURL=image.types.d.ts.map