import styled from 'styled-components/native';
import { SBox } from '../../common/s-components/layout/s-box';
import { TThemed } from '../../common/types';

type TProps = TThemed<{}>;

export const SSkeletonCard = styled<any>(SBox)`
  background-color: ${({ theme }: TProps) => theme.colors.eastBay};
  border-radius: ${8}px;
  height: ${100}px;
  margin-left: ${16}px;
  width: ${198}px;
`;
