- 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
10 lines
365 B
JavaScript
10 lines
365 B
JavaScript
import { jsx } from 'react/jsx-runtime';
|
|
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const CheckIcon = createIcon({
|
|
viewBox: "0 0 14 14",
|
|
path: /* @__PURE__ */ jsx("g", { fill: "currentColor", children: /* @__PURE__ */ jsx("polygon", { points: "5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039" }) })
|
|
});
|
|
|
|
export { CheckIcon };
|