tdesign-react
Version:
TDesign Component for React
8 lines (7 loc) • 311 B
TypeScript
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;