- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
12 lines
437 B
JavaScript
12 lines
437 B
JavaScript
'use strict';
|
|
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const HamburgerIcon = react.createIcon({
|
|
displayName: "HamburgerIcon",
|
|
viewBox: "0 0 24 24",
|
|
d: "M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"
|
|
});
|
|
|
|
exports.HamburgerIcon = HamburgerIcon;
|