@ceedcv-maya/shared-layout-react 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceedcv-maya/shared-layout-react",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -9,8 +9,8 @@
9
9
  "react-dom": "^18.0.0 || ^19.0.0",
10
10
  "react-router-dom": "^6.0.0 || ^7.0.0",
11
11
  "react-i18next": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
12
- "@ceedcv-maya/shared-auth-react": "^0.3.0",
13
- "@ceedcv-maya/shared-ui-react": "^0.3.0"
12
+ "@ceedcv-maya/shared-auth-react": "^0.4.0",
13
+ "@ceedcv-maya/shared-ui-react": "^0.4.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/react": "^19.0.0",
package/src/index.ts CHANGED
@@ -24,4 +24,5 @@ export {
24
24
  KeyIcon,
25
25
  AppsIcon,
26
26
  BellIcon,
27
+ AlertsIcon,
27
28
  } from './navIcons';
package/src/navIcons.tsx CHANGED
@@ -111,3 +111,9 @@ export const BellIcon = () => (
111
111
  <path d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z" />
112
112
  </svg>
113
113
  );
114
+
115
+ export const AlertsIcon = () => (
116
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" className="w-[22px] h-[22px]">
117
+ <path fillRule="evenodd" d="M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495zM10 5a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0v-3.5A.75.75 0 0110 5zm0 9a1 1 0 100-2 1 1 0 000 2z" clipRule="evenodd" />
118
+ </svg>
119
+ );