@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
22 lines (21 loc) • 828 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";
//#region src/p/p.types.d.ts
type PProps = SystemProps & ThemingProps<'P'> & {
/** Alias for textAlign prop. @deprecated */
align?: TypographyProps['textAlign'];
/** Alias for textTransform prop. @deprecated */
casing?: TypographyProps['textTransform'];
/** Alias for textDecoration prop. @deprecated */
decoration?: TypographyProps['textDecoration'];
/** Displays given text if no children are provided. */
text?: number | string;
/** Alias for fontWeight prop. @deprecated */
weight?: TypographyProps['fontWeight'];
};
//#endregion
export { PProps };
//# sourceMappingURL=p.types.d.ts.map