UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 408 B
import React from 'react'; export default function ToggleSwitchIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-toggle-switch ${props.className}`} viewBox="0 0 24 24" > <path d="M17 7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h10a5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3z" /> </svg> ); }