- 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
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
'use strict';
|
|
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const ArrowBackIcon = react.createIcon({
|
|
d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",
|
|
displayName: "ArrowBackIcon"
|
|
});
|
|
|
|
exports.ArrowBackIcon = ArrowBackIcon;
|