semantic-ui-react
Version:
The official Semantic-UI-React integration.
30 lines (20 loc) • 692 B
TypeScript
import * as React from 'react'
import { SemanticShorthandContent, SemanticShorthandItem } from '../../generic'
import { FeedLikeProps } from './FeedLike'
export interface FeedMetaProps extends StrictFeedMetaProps {
[key: string]: any
}
export interface StrictFeedMetaProps {
/** An element type to render as (string or function). */
as?: any
/** Primary content. */
children?: React.ReactNode
/** Additional classes. */
className?: string
/** Shorthand for primary content. */
content?: SemanticShorthandContent
/** Shorthand for FeedLike. */
like?: SemanticShorthandItem<FeedLikeProps>
}
declare const FeedMeta: React.FC<FeedMetaProps>
export default FeedMeta