@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
25 lines (24 loc) • 952 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { TypographyProps } from "../system/typography.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import { ReactNode } from "react";
//#region src/t/t.types.d.ts
type TProps = SystemProps & ThemingProps<'T'> & {
/** Alias for textAlign prop. @deprecated */
align?: TypographyProps['textAlign'];
/** Alias for textTransform prop. @deprecated */
casing?: TypographyProps['textTransform'];
/** Displays component as inline-flex and centers content veritcally. */
centerV?: boolean;
/** Alias for textTransform prop. @deprecated */
decoration?: TypographyProps['textDecoration'];
/** Displays given text if no children are provided. */
text?: ReactNode;
/** Alias for fontWeight prop. @deprecated */
weight?: TypographyProps['fontWeight'];
};
//#endregion
export { TProps };
//# sourceMappingURL=t.types.d.ts.map