@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
14 lines (13 loc) • 436 B
TypeScript
/**
* HTML Element
*
*/
import type { TypographySize, TypographyProps } from './Typography';
export type PSize = TypographySize;
export type PProps = TypographyProps<HTMLParagraphElement>;
declare function P(props: PProps): import("react/jsx-runtime").JSX.Element;
export default P;
export type ParagraphContextType = {
isNested?: boolean;
};
export declare const ParagraphContext: import("react").Context<ParagraphContextType>;