fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
10 lines (9 loc) • 327 B
TypeScript
import React from 'react';
import { PlaceholderImageProps } from './type';
declare const PlaceholderImage: {
({ as, className, ...props }: PlaceholderImageProps): React.ReactElement<{
className: string;
}, string | React.JSXElementConstructor<any>>;
displayName: string;
};
export default PlaceholderImage;