import React from 'react';
import { SBox } from '../../common/s-components/layout/s-box';
import { AnimatedGradient } from '../../common/components/animated-gradient';

export const Skeleton1: React.FC = () => {
  return (
    <SBox position="relative" ml={16} pt={2} pb={0.3} overflow="hidden">
      <SBox width={128} height={16} mb={22} bg="eastBay" />
      <SBox height={272} mb={36} borderRadius={10} bg="eastBay" mr={16} />
      <SBox width={128} height={16} mb={20} bg="eastBay" />
      <SBox
        height={140}
        borderTopLeftRadius={10}
        borderBottomLeftRadius={10}
        bg="eastBay"
      />
      <SBox position="absolute" top={0} left={0} height="100%" flex={1}>
        <AnimatedGradient angle={8} gradientWidth={160} />
      </SBox>
    </SBox>
  );
};
