UNPKG
react-icon-blur
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Icon Blur Library
github.com/JP1016/react-icon-blur
JP1016/react-icon-blur
react-icon-blur
/
dist
/
index.d.ts
13 lines
(12 loc)
•
318 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types="react" />
import
'./styles.scss'
;
interface
IconProps
{
type
:
'ROUNDED'
|
'SQUARE'
|
'CIRCLE'
;
src
:
string
;
size
:
number
;
padding
:
number
;
name
?:
string
;
onClick
?:
Function
; }
declare
const
IconBlur
:
(
props
:
IconProps
) =>
JSX
.
Element
;
export
default
IconBlur
;