- 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
235 B
JavaScript
11 lines
235 B
JavaScript
'use strict';
|
|
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const ChevronLeftIcon = react.createIcon({
|
|
d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",
|
|
displayName: "ChevronLeftIcon"
|
|
});
|
|
|
|
exports.ChevronLeftIcon = ChevronLeftIcon;
|