34 lines
658 B
TypeScript
34 lines
658 B
TypeScript
import { Flex } from "@/ui";
|
|
|
|
|
|
export const DisplayTrackSkeleton = () => {
|
|
return (
|
|
<Flex direction="row" width="100%" height="full">
|
|
{/* <Skeleton
|
|
borderRadius="0px"
|
|
height="50"
|
|
width="50"
|
|
minWidth="50"
|
|
minHeight="50"
|
|
/> */}
|
|
<Flex
|
|
direction="column"
|
|
width="100%"
|
|
height="full"
|
|
paddingLeft="5px"
|
|
style={{
|
|
overflowX: "hidden"
|
|
}}
|
|
>
|
|
{/* <SkeletonText
|
|
skeletonHeight="20px"
|
|
noOfLines={1}
|
|
spacing={0}
|
|
width="50%"
|
|
marginY="auto"
|
|
/> */}
|
|
</Flex>
|
|
</Flex>
|
|
);
|
|
};
|