- 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
506 B
JavaScript
20 lines
506 B
JavaScript
'use strict';
|
|
|
|
var jsxRuntime = require('react/jsx-runtime');
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const SmallAddIcon = react.createIcon({
|
|
displayName: "SmallAddIcon",
|
|
viewBox: "0 0 20 20",
|
|
path: /* @__PURE__ */ jsxRuntime.jsx(
|
|
"path",
|
|
{
|
|
fill: "currentColor",
|
|
d: "M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",
|
|
fillRule: "evenodd"
|
|
}
|
|
)
|
|
});
|
|
|
|
exports.SmallAddIcon = SmallAddIcon;
|