@brizy/ui-icons
Version:
10 lines (9 loc) • 661 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CartInline = void 0;
const react_1 = __importDefault(require("react"));
exports.CartInline = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", viewBox: "0 0 16 16" },
react_1.default.createElement("path", { fill: "currentColor", d: "M6 6a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H0V6h6Zm10 0v4h-6a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6Z" })));