@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
12 lines (11 loc) • 451 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import { PanelProps } from "./panel.types.js";
//#region src/panel/panel.d.ts
/**
* Displays static or partially interactive content, such as text, images or buttons.
* Supports use cases of showing multiple segments of a page, each focusing on different data type or context.
*/
declare const Panel: VuiComponent<"div", PanelProps>;
//#endregion
export { Panel };
//# sourceMappingURL=panel.d.ts.map