- 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
207 B
JavaScript
9 lines
207 B
JavaScript
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const ArrowUpIcon = createIcon({
|
|
d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",
|
|
displayName: "ArrowUpIcon"
|
|
});
|
|
|
|
export { ArrowUpIcon };
|