UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 438 B
import React from 'react'; export default function ScriptIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-script ${props.className}`} viewBox="0 0 24 24" > <path d="M17.8 20c-.4 1.2-1.5 2-2.8 2H5c-1.7 0-3-1.3-3-3v-1h12.2c.4 1.2 1.5 2 2.8 2h.8M19 2H8C6.3 2 5 3.3 5 5v11h11v1c0 .6.4 1 1 1h1V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3z" /> </svg> ); }