react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 401 B
JavaScript
import * as React from 'react';
export function SvgPaintRollerSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 4v8h18V4zm2 2h14v4H7zm17 1v2h1v4.25l-9.281 2.781-.719.219V19h-2v9h6v-9h-2v-1.25l9.281-2.781.719-.219V7zm-9 14h2v5h-2z" })));
}
export default SvgPaintRollerSolid;