import React, { SVGProps } from 'react'; import styled from 'styled-components'; const RatingSvg = (props: SVGProps) => ( ); const Rating = styled(RatingSvg)` flex-shrink: 0; width: 1em; height: 1em; transition: color 200ms ease, transform 200ms ease; `; export const RatingIcon = React.memo(Rating); RatingIcon.displayName = 'RatingIcon';