@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) • 381 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { BoxProps } from "../box/box.types.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