react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 500 B
JavaScript
import React from 'react';
export default function SwapHorizontalCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-swap-horizontal-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3-13.5V9h-4v2h4v2.5l3.5-3.5L15 6.5m-6 4L5.5 14 9 17.5V15h4v-2H9v-2.5z" />
</svg>
);
}