@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
15 lines (14 loc) • 760 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { TypographyProps } from "../system/typography.js";
import { SystemProps } from "../system/system.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