- 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
569 B
JavaScript
13 lines
569 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const TimeIcon = createIcon({
|
|
displayName: "TimeIcon",
|
|
path: /* @__PURE__ */ jsxs("g", { fill: "currentColor", children: [
|
|
/* @__PURE__ */ jsx("path", { d: "M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" }),
|
|
/* @__PURE__ */ jsx("path", { d: "M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z" })
|
|
] })
|
|
});
|
|
|
|
export { TimeIcon };
|