import React from 'react';
import { Icon } from './icon';
import { SStarredLabelContainer } from '../s-components/s-starred-label-container';

type TProps = {};

export const StarredLabel: React.FC<TProps> = () => {
  return (
    <SStarredLabelContainer>
      <Icon mt={1} name="star" color="wildStrawberry" size={12} />
    </SStarredLabelContainer>
  );
};
