UNPKG

tdesign-react

Version:
8 lines (7 loc) 311 B
import React from 'react'; import { StyledProps } from '../common'; import { TdCommentProps } from './type'; export interface CommentProps extends TdCommentProps, StyledProps { } declare const Comment: React.ForwardRefExoticComponent<CommentProps & React.RefAttributes<HTMLDivElement>>; export default Comment;