@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
17 lines (16 loc) • 586 B
TypeScript
import * as React from 'react';
import { BaseProps } from "../../../utils/types";
export declare type Length = 'small' | 'medium' | 'large';
export declare type PlaceholderParagraphSize = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
export interface PlaceholderParagraphProps extends BaseProps {
length: Length;
size?: PlaceholderParagraphSize;
}
export declare const PlaceholderParagraph: {
(props: PlaceholderParagraphProps): React.JSX.Element;
displayName: string;
defaultProps: {
length: string;
};
};
export default PlaceholderParagraph;