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

export const SkeletonString: React.FC = () => {
  return (
    <SBox
      position="relative"
      height={16}
      overflow="hidden"
      width={150}
      bg={theme.colors.eastBay}
      mt={8}
      mb={5}
    >
      <SBox position="absolute" top={0} left={0} height="100%" flex={1}>
        <AnimatedGradient angle={-1} gradientWidth={160} />
      </SBox>
    </SBox>
  );
};
