UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

7 lines (6 loc) 349 B
import * as React from 'react'; import type { BlockProps } from './Base'; export interface ParagraphProps extends BlockProps<'div'>, Omit<React.HTMLAttributes<HTMLDivElement>, 'type' | keyof BlockProps<'div'>> { } declare const Paragraph: React.ForwardRefExoticComponent<ParagraphProps & React.RefAttributes<HTMLElement>>; export default Paragraph;