UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 468 B
import React from 'react'; export default function PrescriptionIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-prescription ${props.className}`} viewBox="0 0 24 24" > <path d="M4 4v10h2v-4h2l5.41 5.41L9.83 19l1.41 1.41 3.59-3.58 3.58 3.58L19.82 19l-3.58-3.59 3.58-3.58-1.41-1.42L14.83 14l-4-4H11a3 3 0 0 0 3-3 3 3 0 0 0-3-3H4m2 2h5a1 1 0 0 1 1 1 1 1 0 0 1-1 1H6V6z" /> </svg> ); }