- 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
20 lines
625 B
JavaScript
20 lines
625 B
JavaScript
'use strict';
|
|
|
|
var jsxRuntime = require('react/jsx-runtime');
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const SmallCloseIcon = react.createIcon({
|
|
displayName: "SmallCloseIcon",
|
|
viewBox: "0 0 16 16",
|
|
path: /* @__PURE__ */ jsxRuntime.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"
|
|
}
|
|
)
|
|
});
|
|
|
|
exports.SmallCloseIcon = SmallCloseIcon;
|