Fix Send icon color (#7745)

This commit is contained in:
Clément Pasteau
2025-07-25 13:33:02 +02:00
committed by GitHub
parent 6c4bb4f79e
commit 5561334efa

View File

@@ -4,16 +4,16 @@ import SvgIcon from '@material-ui/core/SvgIcon';
export default React.memo(props => (
<SvgIcon {...props} width="17" height="16" viewBox="0 0 17 16" fill="none">
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M12.9113 2.25541C13.068 2.36185 13.151 2.54765 13.1259 2.73536L11.6907 13.4473C11.6623 13.6594 11.5021 13.8298 11.2923 13.8714C11.0824 13.913 10.8694 13.8164 10.7623 13.6312L8.19675 9.19375L3.12638 8.44262C2.91475 8.41126 2.74652 8.24874 2.70788 8.03833C2.66923 7.82791 2.76875 7.61622 2.95543 7.51172L12.3861 2.23267C12.5513 2.14017 12.7547 2.14897 12.9113 2.25541ZM4.72309 7.66824L8.58206 8.23991C8.73292 8.26226 8.86532 8.35223 8.94165 8.48425L10.8942 11.8615L12.0019 3.59372L4.72309 7.66824Z"
fill="#F5F5F7"
fill="currentColor"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M9.91385 6.66672C10.1423 6.82191 10.2016 7.13289 10.0464 7.36129L9.01602 8.87768C8.86083 9.10608 8.54985 9.16542 8.32145 9.01022C8.09305 8.85503 8.0337 8.54405 8.1889 8.31565L9.21928 6.79926C9.37448 6.57086 9.68545 6.51152 9.91385 6.66672Z"
fill="#F5F5F7"
fill="currentColor"
/>
</SvgIcon>
));