- 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
200 B
JavaScript
9 lines
200 B
JavaScript
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const ChevronUpIcon = createIcon({
|
|
d: "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",
|
|
displayName: "ChevronUpIcon"
|
|
});
|
|
|
|
export { ChevronUpIcon };
|