Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import React from "react";
interface Props {
fill?: string;
width?: number | string;
height?: number | string;
}
function RateIcon({ fill = "#13A75A", width = "10", height = "10" }: Props) {
return (
<svg
width={width}
height={height}
viewBox="0 0 10 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M5.7931 9.19665C5.7931 9.41756 5.61401 9.59665 5.3931 9.59665C5.17218 9.59665 4.9931 9.41756 4.9931 9.19665V8.26315C4.9931 8.04224 5.17218 7.86315 5.3931 7.86315C5.61401 7.86315 5.7931 8.04224 5.7931 8.26315V9.19665ZM5.7931 6.52982C5.7931 6.75073 5.61401 6.92982 5.3931 6.92982C5.17218 6.92982 4.9931 6.75073 4.9931 6.52982L4.9931 1.7358L1.35675 5.22799C1.19742 5.38101 0.944204 5.37588 0.791185 5.21655C0.638165 5.05721 0.643286 4.804 0.802622 4.65098L5.10304 0.52104C5.17593 0.444319 5.27893 0.396484 5.3931 0.396484C5.5092 0.396484 5.61375 0.445948 5.68682 0.524951L9.87134 4.65479C10.0286 4.80997 10.0302 5.06323 9.87506 5.22046C9.71988 5.3777 9.46662 5.37936 9.30939 5.22418L5.7931 1.75385V6.52982Z"
fill={fill}
/>
</svg>
);
}
export default RateIcon;
|