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

type TProps = {};

export const VendorPlaylistPillSkeleton: React.FC<TProps> = () => {
  return (
    <SBox
      position="relative"
      height={24}
      overflow="hidden"
      width={92}
      bg="eastBay"
      borderRadius={2}
    >
      <SBox position="absolute" top={0} left={0} height="100%" flex={1}>
        <AnimatedGradient angle={-1} gradientWidth={160} />
      </SBox>
    </SBox>
  );
};
