UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

6 lines (5 loc) 608 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const TileSkeleton = () => { return (_jsxs("div", { className: "animate-pulse", children: [_jsx("div", { className: "h-4 bg-gray-200 rounded-full w-1/2 mb-4" }), _jsxs("div", { className: "flex justify-between", style: { height: '50px' }, children: [_jsxs("div", { className: "space-y-3", children: [_jsx("div", { className: "h-6 bg-gray-200 rounded-full w-24" }), _jsx("div", { className: "h-4 bg-gray-200 rounded-full w-20" })] }), _jsx("div", { className: "h-6 bg-gray-200 rounded-full w-16" })] })] })); }; export default TileSkeleton;