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