react-skeleton-builder
Version:
A versatile React component library for creating customizable skeleton loading animations with Chakra UI and TypeScript.
9 lines (8 loc) • 320 B
TypeScript
import React from 'react';
import { IGrid } from '../common/types';
export type IProps = {
grid: IGrid;
customContainerWidth?: number;
styles?: Record<string, any>;
};
export declare const Skeleton: React.MemoExoticComponent<({ grid: gridState, styles, customContainerWidth }: IProps) => React.JSX.Element>;