UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

10 lines (9 loc) 372 B
import React from "react"; import { VibeComponentProps } from "../../../types"; import { TableLoadingStateType } from "../Table/Table"; export interface TableCellSkeletonProps extends VibeComponentProps { type?: TableLoadingStateType; short?: boolean; } declare const TableCellSkeleton: React.FC<TableCellSkeletonProps>; export default TableCellSkeleton;