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

export const SkeletonGraph: React.FC = () => {
  return (
    <SBox
      position="relative"
      mx={16}
      mt={16}
      width={251}
      height={80}
      alignItems="center"
      overflow="hidden"
      bg="eastBay"
    >
      <SBox position="absolute" top={0} left={0} height="100%" flex={1}>
        <AnimatedGradient angle={8} gradientWidth={160} />
      </SBox>
    </SBox>
  );
};
