Paragraph.d.ts 349 B

123456
  1. import * as React from 'react';
  2. import type { BlockProps } from './Base';
  3. export interface ParagraphProps extends BlockProps<'div'>, Omit<React.HTMLAttributes<HTMLDivElement>, 'type' | keyof BlockProps<'div'>> {
  4. }
  5. declare const Paragraph: React.ForwardRefExoticComponent<ParagraphProps & React.RefAttributes<HTMLElement>>;
  6. export default Paragraph;