@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) • 438 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { BoxProps } from "../box/box.types.js";
import "../box/index.js";
//#region src/card/card.types.d.ts
type CardProps = Omit<BoxProps, 'size' | 'variant'> & ThemingProps<'Card'> & {
/** Makes card clickable and focusable with correct styling. */
isInteractive?: boolean;
};
//#endregion
export { CardProps };
//# sourceMappingURL=card.types.d.ts.map