import styled from 'styled-components/macro' const Svg = styled.svg` margin-right: 0.472rem; width: 0.95rem; height: 0.95rem; @media (max-width: 650px){ width: 11px; height: 11px; } ` type StarProps = { isFavorite: boolean, } export const StarIcon = ({ isFavorite }: StarProps) => ( { isFavorite ? ( ) : ( ) } )