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.

10 lines (9 loc) 350 B
import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { BoxProps } from "../box/box.types.js"; import "../box/index.js"; //#region src/panel/panel.types.d.ts type PanelProps = Omit<BoxProps, 'size' | 'variant'> & ThemingProps<'Panel'> & {}; //#endregion export { PanelProps }; //# sourceMappingURL=panel.types.d.ts.map