@entur/icons 7.7.1 → 7.9.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/README.md +2 -2
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +679 -237
- package/dist/index.esm.native.js +296 -237
- package/dist/index.js +917 -472
- package/dist/styles.css +2 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This package contains the icon components.
|
|
4
4
|
|
|
5
|
-
> 💡 Looking for the [documentation](https://
|
|
5
|
+
> 💡 Looking for the [documentation](https://linje.entur.no/komponenter/ressurser/icons)?
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -20,7 +20,7 @@ import { AddIcon } from '@entur/icons'; // Import specific icon
|
|
|
20
20
|
<AddIcon />;
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
Please refer to the [documentation](https://
|
|
23
|
+
Please refer to the [documentation](https://linje.entur.no/komponenter/ressurser/icons) for usage information.
|
|
24
24
|
|
|
25
25
|
## Development
|
|
26
26
|
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare const ExternalIcon: React.FC<IconProps & React.SVGProps<SVGElemen
|
|
|
29
29
|
export declare const ForwardIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
30
30
|
export declare const LeftArrowIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
31
31
|
export declare const MergeProfilesIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
32
|
+
export declare const PageNavigationIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
32
33
|
export declare const RedoIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
33
34
|
export declare const RefreshIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
34
35
|
export declare const ResetIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
@@ -257,6 +258,8 @@ export declare const AnimalFreeIcon: React.FC<IconProps & React.SVGProps<SVGElem
|
|
|
257
258
|
export declare const AssignToMeIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
258
259
|
export declare const AssignToMeFilledIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
259
260
|
export declare const BellIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
261
|
+
export declare const BirthdateIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
262
|
+
export declare const BirthdateFilledIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
260
263
|
export declare const BoardIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
261
264
|
export declare const BoardFilledIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|
|
262
265
|
export declare const BookmarkIcon: React.FC<IconProps & React.SVGProps<SVGElement>>;
|