- 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
13 lines
736 B
JavaScript
13 lines
736 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const ArrowRightIcon = createIcon({
|
|
displayName: "ArrowRightIcon",
|
|
path: /* @__PURE__ */ jsxs("g", { fill: "currentColor", children: [
|
|
/* @__PURE__ */ jsx("path", { d: "M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z" }),
|
|
/* @__PURE__ */ jsx("path", { d: "M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z" })
|
|
] })
|
|
});
|
|
|
|
export { ArrowRightIcon };
|