import React from 'react';
import { SSwipeableIcon } from '../../../common/s-components/s-swipeable-icon';
import { SBox } from '../../../common/s-components/layout/s-box';

export const StarredSkeleton: React.FC = () => {
  return (
    <SBox
      width={44}
      height={44}
      mt={1}
      bg="transparent"
      justifyContent="center"
      alignItems="center"
    >
      <SSwipeableIcon name="star-small" size={31} color="eastBay" />
    </SBox>
  );
};
