custom-app
Version:
ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������
21 lines (14 loc) • 457 B
TypeScript
import * as React from 'react'
export interface CommentAvatarProps extends StrictCommentAvatarProps {
[key: string]: any
}
export interface StrictCommentAvatarProps {
/** An element type to render as (string or function). */
as?: any
/** Additional classes. */
className?: string
/** Specifies the URL of the image. */
src?: string
}
declare const CommentAvatar: React.StatelessComponent<CommentAvatarProps>
export default CommentAvatar