react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 345 B
JavaScript
import * as React from 'react';
export function SvgBarcodeSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M2 7v18h2V7zm4 0v18h6V7zm8 0v18h2V7zm4 0v18h4V7zm6 0v18h2V7zm4 0v18h2V7z" })));
}
export default SvgBarcodeSolid;