@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
20 lines (19 loc) • 703 B
TypeScript
import * as React from 'react';
import { BaseProps } from "../../../utils/types";
import { PlaceholderImageSize } from "../../atoms/placeholderImage";
import { PlaceholderParagraphProps } from "../../atoms/placeholderParagraph";
export interface PlaceholderProps extends BaseProps {
withImage: boolean;
round?: boolean;
imageSize: PlaceholderImageSize;
children?: React.ReactElement<PlaceholderParagraphProps> | React.ReactElement<PlaceholderParagraphProps>[];
}
export declare const Placeholder: {
(props: PlaceholderProps): React.JSX.Element;
displayName: string;
defaultProps: {
withImage: boolean;
imageSize: string;
};
};
export default Placeholder;