- 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
205 B
JavaScript
9 lines
205 B
JavaScript
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const ChevronLeftIcon = createIcon({
|
|
d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",
|
|
displayName: "ChevronLeftIcon"
|
|
});
|
|
|
|
export { ChevronLeftIcon };
|