- 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
368 B
JavaScript
11 lines
368 B
JavaScript
'use strict';
|
|
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const CheckCircleIcon = react.createIcon({
|
|
displayName: "CheckCircleIcon",
|
|
d: "M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"
|
|
});
|
|
|
|
exports.CheckCircleIcon = CheckCircleIcon;
|