import React, { memo } from 'react';
import { SText } from '../../../../s-components/typography/s-text';
import { SToastBaseText } from '../../../../s-components/s-toast-base-text';

type TProps = {};

export const StarNoData: React.FC<TProps> = memo(() => (
  <SToastBaseText>
    <SText>Sorry, this track cannot be starred</SText>
    {'\n'}
    <SText>due to absence of data.</SText>
  </SToastBaseText>
));
