@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
10 lines (9 loc) • 345 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.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