@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 639 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialBarcodeFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "BarcodeFilled",
short_name: "Barcode",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M1 5h2v14H1Zm6 0h1v14H7ZM4 5h2v14H4Zm16 0h3v14h-3ZM10 5h2v14h-2Zm7 0h1v14h-1Zm-4 0h3v14h-3Z"
}));
});
IconMaterialBarcodeFilled.displayName = 'AmauiIconMaterialBarcodeFilled';
export default IconMaterialBarcodeFilled;