A component that accepts props P: a function, class, or HTML tag name.
type
markdown.Component
type Component<P = {}> = string | (props: P) => any | new (props: P) => any
type
A component that accepts props P: a function, class, or HTML tag name.