@abqm-ds/icons 2.0.18 → 3.0.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": "@abqm-ds/icons",
3
- "version": "2.0.18",
3
+ "version": "3.0.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,22 @@
1
+ import type { SVGProps } from 'react';
2
+ const Calendar4WeekIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <g fill={props?.fill ? props.fill : '#fff'} clipPath="url(#calendar4-week_svg__a)">
12
+ <path d="M5.25 0A.75.75 0 0 1 6 .75v.75h12V.75a.75.75 0 1 1 1.5 0v.75H21a3 3 0 0 1 3 3V21a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V4.5a3 3 0 0 1 3-3h1.5V.75A.75.75 0 0 1 5.25 0M3 3a1.5 1.5 0 0 0-1.5 1.5V6h21V4.5A1.5 1.5 0 0 0 21 3zm19.5 4.5h-21V21A1.5 1.5 0 0 0 3 22.5h18a1.5 1.5 0 0 0 1.5-1.5z" />
13
+ <path d="M16.5 11.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75zm-4.5 0a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75zm-3 4.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75zm-4.5 0a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75z" />
14
+ </g>
15
+ <defs>
16
+ <clipPath id="calendar4-week_svg__a">
17
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
18
+ </clipPath>
19
+ </defs>
20
+ </svg>
21
+ );
22
+ export default Calendar4WeekIcon;
@@ -0,0 +1,21 @@
1
+ import type { SVGProps } from 'react';
2
+ const Link45DegIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="m7.072 9.813-2.058 2.058a4.5 4.5 0 0 0 6.365 6.364l2.742-2.743a4.5 4.5 0 0 0-1.242-7.242l-.88.879q-.133.135-.23.299a3 3 0 0 1 1.291 5.005l-2.74 2.742a3.002 3.002 0 1 1-4.245-4.245l1.19-1.188a6 6 0 0 1-.193-1.93z"
14
+ />
15
+ <path
16
+ fill={props?.fill ? props.fill : '#1E1E1E'}
17
+ d="M9.879 7.008a4.5 4.5 0 0 0 1.242 7.242l1.162-1.164a3 3 0 0 1-1.344-5.019l2.74-2.742a3.002 3.002 0 1 1 4.246 4.245l-1.19 1.188c.168.63.233 1.283.192 1.93l2.058-2.057a4.5 4.5 0 1 0-6.364-6.365z"
18
+ />
19
+ </svg>
20
+ );
21
+ export default Link45DegIcon;
@@ -5,6 +5,7 @@ export { default as BarChartIcon } from './BarChartIcon';
5
5
  export { default as BarChartLineIcon } from './BarChartLineIcon';
6
6
  export { default as BoxArrowInLeftIcon } from './BoxArrowInLeftIcon';
7
7
  export { default as BroadcastIcon } from './BroadcastIcon';
8
+ export { default as Calendar4WeekIcon } from './Calendar4WeekIcon';
8
9
  export { default as CaretDownFillIcon } from './CaretDownFillIcon';
9
10
  export { default as CaretLeftFillIcon } from './CaretLeftFillIcon';
10
11
  export { default as CaretRightFillIcon } from './CaretRightFillIcon';
@@ -28,6 +29,7 @@ export { default as GoogleColorIcon } from './GoogleColorIcon';
28
29
  export { default as GoogleIcon } from './GoogleIcon';
29
30
  export { default as InstagramIcon } from './InstagramIcon';
30
31
  export { default as LaurelIcon } from './LaurelIcon';
32
+ export { default as Link45DegIcon } from './Link45DegIcon';
31
33
  export { default as ListIcon } from './ListIcon';
32
34
  export { default as ListOlIcon } from './ListOlIcon';
33
35
  export { default as Medal2Icon } from './Medal2Icon';
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4_1068)">
3
+ <path d="M5.25 0C5.44891 0 5.63968 0.0790176 5.78033 0.21967C5.92098 0.360322 6 0.551088 6 0.75V1.5H18V0.75C18 0.551088 18.079 0.360322 18.2197 0.21967C18.3603 0.0790176 18.5511 0 18.75 0C18.9489 0 19.1397 0.0790176 19.2803 0.21967C19.421 0.360322 19.5 0.551088 19.5 0.75V1.5H21C21.7956 1.5 22.5587 1.81607 23.1213 2.37868C23.6839 2.94129 24 3.70435 24 4.5V21C24 21.7956 23.6839 22.5587 23.1213 23.1213C22.5587 23.6839 21.7956 24 21 24H3C2.20435 24 1.44129 23.6839 0.87868 23.1213C0.316071 22.5587 0 21.7956 0 21V4.5C0 3.70435 0.316071 2.94129 0.87868 2.37868C1.44129 1.81607 2.20435 1.5 3 1.5H4.5V0.75C4.5 0.551088 4.57902 0.360322 4.71967 0.21967C4.86032 0.0790176 5.05109 0 5.25 0V0ZM3 3C2.60218 3 2.22064 3.15804 1.93934 3.43934C1.65804 3.72064 1.5 4.10218 1.5 4.5V6H22.5V4.5C22.5 4.10218 22.342 3.72064 22.0607 3.43934C21.7794 3.15804 21.3978 3 21 3H3ZM22.5 7.5H1.5V21C1.5 21.3978 1.65804 21.7794 1.93934 22.0607C2.22064 22.342 2.60218 22.5 3 22.5H21C21.3978 22.5 21.7794 22.342 22.0607 22.0607C22.342 21.7794 22.5 21.3978 22.5 21V7.5Z" fill="#1E1E1E"/>
4
+ <path d="M16.5 11.25C16.5 11.0511 16.579 10.8603 16.7197 10.7197C16.8603 10.579 17.0511 10.5 17.25 10.5H18.75C18.9489 10.5 19.1397 10.579 19.2803 10.7197C19.421 10.8603 19.5 11.0511 19.5 11.25V12.75C19.5 12.9489 19.421 13.1397 19.2803 13.2803C19.1397 13.421 18.9489 13.5 18.75 13.5H17.25C17.0511 13.5 16.8603 13.421 16.7197 13.2803C16.579 13.1397 16.5 12.9489 16.5 12.75V11.25ZM12 11.25C12 11.0511 12.079 10.8603 12.2197 10.7197C12.3603 10.579 12.5511 10.5 12.75 10.5H14.25C14.4489 10.5 14.6397 10.579 14.7803 10.7197C14.921 10.8603 15 11.0511 15 11.25V12.75C15 12.9489 14.921 13.1397 14.7803 13.2803C14.6397 13.421 14.4489 13.5 14.25 13.5H12.75C12.5511 13.5 12.3603 13.421 12.2197 13.2803C12.079 13.1397 12 12.9489 12 12.75V11.25ZM9 15.75C9 15.5511 9.07902 15.3603 9.21967 15.2197C9.36032 15.079 9.55109 15 9.75 15H11.25C11.4489 15 11.6397 15.079 11.7803 15.2197C11.921 15.3603 12 15.5511 12 15.75V17.25C12 17.4489 11.921 17.6397 11.7803 17.7803C11.6397 17.921 11.4489 18 11.25 18H9.75C9.55109 18 9.36032 17.921 9.21967 17.7803C9.07902 17.6397 9 17.4489 9 17.25V15.75ZM4.5 15.75C4.5 15.5511 4.57902 15.3603 4.71967 15.2197C4.86032 15.079 5.05109 15 5.25 15H6.75C6.94891 15 7.13968 15.079 7.28033 15.2197C7.42098 15.3603 7.5 15.5511 7.5 15.75V17.25C7.5 17.4489 7.42098 17.6397 7.28033 17.7803C7.13968 17.921 6.94891 18 6.75 18H5.25C5.05109 18 4.86032 17.921 4.71967 17.7803C4.57902 17.6397 4.5 17.4489 4.5 17.25V15.75Z" fill="#1E1E1E"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_4_1068">
8
+ <rect width="24" height="24" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.07242 9.813L5.01442 11.871C4.17043 12.715 3.69629 13.8597 3.69629 15.0532C3.69629 16.2468 4.17043 17.3915 5.01442 18.2355C5.85841 19.0795 7.00309 19.5536 8.19667 19.5536C9.39025 19.5536 10.5349 19.0795 11.3789 18.2355L14.1209 15.492C14.6299 14.983 15.0093 14.3593 15.2273 13.6733C15.4453 12.9873 15.4956 12.259 15.374 11.5496C15.2523 10.8402 14.9622 10.1702 14.5281 9.59611C14.0939 9.02197 13.5284 8.56035 12.8789 8.25L11.9999 9.129C11.9107 9.2184 11.8331 9.31869 11.7689 9.4275C12.2707 9.57175 12.7262 9.84447 13.0903 10.2187C13.4544 10.5929 13.7145 11.0557 13.8449 11.5612C13.9754 12.0668 13.9716 12.5976 13.834 13.1013C13.6964 13.6049 13.4298 14.064 13.0604 14.433L10.3199 17.175C9.757 17.7379 8.99351 18.0542 8.19742 18.0542C7.40133 18.0542 6.63784 17.7379 6.07492 17.175C5.512 16.6121 5.19575 15.8486 5.19575 15.0525C5.19575 14.2564 5.512 13.4929 6.07492 12.93L7.26442 11.742C7.09659 11.1131 7.03175 10.4611 7.07242 9.8115V9.813Z" fill="#1E1E1E"/>
3
+ <path d="M9.87883 7.00813C9.36989 7.51714 8.99048 8.14082 8.77244 8.82681C8.55441 9.5128 8.50412 10.2411 8.62579 10.9505C8.74746 11.66 9.03754 12.3299 9.47168 12.904C9.90583 13.4782 10.4714 13.9398 11.1208 14.2501L12.2833 13.0861C11.7747 12.9497 11.311 12.6818 10.9388 12.3094C10.5665 11.937 10.2988 11.4732 10.1626 10.9646C10.0264 10.4559 10.0265 9.9204 10.1628 9.4118C10.2992 8.9032 10.567 8.43944 10.9393 8.06713L13.6798 5.32513C14.2427 4.76221 15.0062 4.44596 15.8023 4.44596C16.5984 4.44596 17.3619 4.76221 17.9248 5.32513C18.4877 5.88805 18.804 6.65154 18.804 7.44763C18.804 8.24372 18.4877 9.00721 17.9248 9.57013L16.7353 10.7581C16.9033 11.3881 16.9678 12.0406 16.9273 12.6886L18.9853 10.6306C19.8293 9.78664 20.3035 8.64195 20.3035 7.44838C20.3035 6.2548 19.8293 5.11011 18.9853 4.26613C18.1413 3.42214 16.9967 2.948 15.8031 2.948C14.6095 2.948 13.4648 3.42214 12.6208 4.26613L9.87883 7.00813Z" fill="#1E1E1E"/>
4
+ </svg>