Files
Frontend-Internal-Developer…/frontend/src/app/components/icons/restart.jsx
2026-03-03 09:53:57 +08:00

27 lines
896 B
JavaScript

const RestartIcon = ({
width = 24,
height = 24,
color = "#D2D3E0",
...props
}) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path
d="M19.6673 11.0417C19.4329 9.35521 18.6506 7.79259 17.4408 6.59452C16.2309 5.39645 14.6608 4.62938 12.9721 4.41149C11.2834 4.1936 9.56996 4.53697 8.09564 5.3887C6.62132 6.24043 5.46793 7.55328 4.81315 9.125M4.33398 5.29167V9.125H8.16732M4.33398 12.9583C4.56835 14.6448 5.35071 16.2074 6.56054 17.4055C7.77037 18.6036 9.34055 19.3706 11.0292 19.5885C12.7179 19.8064 14.4313 19.463 15.9057 18.6113C17.38 17.7596 18.5334 16.4467 19.1882 14.875M19.6673 18.7083V14.875H15.834"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default RestartIcon;