- 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
18 lines
579 B
JavaScript
18 lines
579 B
JavaScript
import { jsx } from 'react/jsx-runtime';
|
|
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const SmallCloseIcon = createIcon({
|
|
displayName: "SmallCloseIcon",
|
|
viewBox: "0 0 16 16",
|
|
path: /* @__PURE__ */ jsx(
|
|
"path",
|
|
{
|
|
d: "M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",
|
|
fillRule: "evenodd",
|
|
fill: "currentColor"
|
|
}
|
|
)
|
|
});
|
|
|
|
export { SmallCloseIcon };
|