- 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
9 lines
338 B
JavaScript
9 lines
338 B
JavaScript
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const CheckCircleIcon = 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"
|
|
});
|
|
|
|
export { CheckCircleIcon };
|