UNPKG
@untitledui/icons
Version:
beta (0.0.18-beta.1)
latest (0.0.22)
0.0.22
0.0.21
0.0.20
0.0.19
0.0.18
0.0.18-beta.1
0.0.17
0.0.16
0.0.15
0.0.14
Official React library for Untitled UI Icons
@untitledui/icons
/
dist
/
Star03.d.ts
10 lines
(7 loc)
•
183 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
FC
,
SVGProps
}
from
'react'
;
interface
Props
extends
SVGProps
<
SVGSVGElement
> {
color
?:
string
;
size
?:
number
; }
declare
const
Star03
:
FC
<
Props
>;
export
{
Star03
};