@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) • 499 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { TdProps } from "./table.types.js";
import "../index.js";
//#region src/table/td.d.ts
declare const TdBase: import("styled-components").StyledComponent<"td", import("styled-components").DefaultTheme, SystemProps, never>;
/** Displays a cell inside Table row. */
declare const Td: VuiComponent<"td", TdProps>;
//#endregion
export { Td, Td as default, TdBase };
//# sourceMappingURL=td.d.ts.map