UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 447 B
import React, { CSSProperties } from 'react'; export type Props = { images?: string[]; authorName?: string; className?: string; style?: CSSProperties; isSensitive?: boolean; isMobile?: boolean; alt?: string; positionAlert?: string; }; declare const PostImagePreview: ({ className, images, style, authorName, isSensitive, alt, positionAlert, }: Props) => React.JSX.Element; export { PostImagePreview };