@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
9 lines (8 loc) • 349 B
JavaScript
import * as React from 'react';
import Skeleton from '@mui/material/Skeleton';
import Box from '@mui/material/Box';
const MdChipSkeleton = ({ width }) => {
return (React.createElement(Box, { width: width ?? 180, height: 32 },
React.createElement(Skeleton, { variant: "rounded", height: 32 })));
};
export default MdChipSkeleton;