UNPKG
@elgato/icons
Version:
latest (2.3.0)
2.3.0
2.2.0
2.1.0
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Icons used throughout the Elgato ecosystem.
docs.elgato.com/resources/icons
elgatosf/icons
@elgato/icons
/
dist
/
react
/
types.d.ts
19 lines
(18 loc)
•
322 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
type
{ Size } from
"../metadata/sizing.js"
;
/** * Icon component properties. */
export
interface
IconProps {
/** * Size of the icon, as a shirt size. */
size?: Size;
/** * Optional label. */
label?:
string
;
/** * Optional class name. */
className?:
string
; }