baseui
Version:
A React Component library implementing the Base design language
15 lines (13 loc) • 851 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HamburgerIcon = HamburgerIcon;
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
function HamburgerIcon(stroke = 'black') {
return `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="24" stroke="${stroke}"><g transform="translate(-250 -3)" ><g><g transform="translate(254 14)"><path id="npath0_fill" d="M0 1a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z" /></g><g transform="translate(254 8)"><path id="npath0_fill" d="M0 1a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z" /></g><g transform="translate(254 20)"><path id="npath0_fill" d="M0 1a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z" /></g></g></g></svg>`;
}