UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 463 B
import React, { CSSProperties, HTMLAttributes } from 'react'; import { Post } from "../../../../../interfaces/types"; export type Props = { post?: Post; id?: string | number; className?: string; style?: CSSProperties; bannedWords?: string[]; value?: string; onChange?: (v: string) => void; } & HTMLAttributes<HTMLDivElement>; declare const PostCard: ({ post, className }: Props) => React.JSX.Element; export { PostCard };