UNPKG

@amaui/ui-react

Version:
13 lines (12 loc) 420 B
import React from 'react'; import { IBaseElement, IColor } from '../types'; export interface IPlaceholder extends Omit<IBaseElement, 'version'> { color?: IColor; version?: 'rectangle' | 'rounded' | 'circle'; width?: string | number; height?: string | number; animation?: 'wave' | 'pulse' | boolean; text?: boolean; } declare const Placeholder: React.FC<IPlaceholder>; export default Placeholder;