UNPKG
@equinor/eds-icons
Version:
latest (1.5.0)
next (0.19.2-dev-03072023-3)
1.5.0
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
0.22.0
0.21.0
0.20.0
0.19.3
0.19.2
0.19.2-dev-29062023
0.19.2-dev-03072023-3
0.19.2-dev-03072023-2
0.19.2-dev-03072023
0.19.1
0.19.0
0.18.0
0.17.0
0.16.0
0.15.0
0.15.0-dev.20221005
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.10.0-dev.202205096
0.9.1
0.9.0
0.8.0
0.8.0-dev20211028
0.7.0
0.7.0-dev.20210831
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.5.0-beta.2
0.5.0-beta.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.1-alpha.2
0.0.1-alpha.1
Icons from the Equinor Design System
eds.equinor.com
equinor/design-system
@equinor/eds-icons
/
dist
/
types
/
types.d.ts
13 lines
(12 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
*
as
icons
from
'./data'
;
export
type
IconName
= keyof
typeof
icons |
string
;
export
type
IconData
= {
name
:
IconName
;
prefix
:
string
;
height
:
string
;
width
:
string
;
svgPathData
:
string
|
Array
<
string
>;
sizes
?: {
small
:
Omit
<
IconData
,
'sizes'
>; }; };