@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
8 lines (7 loc) • 392 B
TypeScript
import type { HTMLStyledProps } from '@fidely-ui/styled-system/types';
export interface SkeletonTextProps extends HTMLStyledProps<'div'> {
noOfLines?: number;
spacing?: string | number;
skeletonHeight?: string | number;
}
export declare const SkeletonText: import("react").ForwardRefExoticComponent<Omit<SkeletonTextProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;