UNPKG
@discostudioteam/react-code-blocks
Version:
latest (0.1.1-0)
0.1.1-0
0.1.0-0
0.0.2-0
0.0.1-0
Modified rajinwonderland's modification of Atlaskit's Code Block!
@discostudioteam/react-code-blocks
/
dist
/
components
/
CopyIcon.d.ts
10 lines
(9 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="react" />
export
interface
IconProps
{
size
:
number
|
string
;
color
:
any
; [
x
:
string
]:
any
; }
export
default
function
(
{ size, color, copied, ...props }:
IconProps
& { copied:
boolean
; }
):
JSX
.
Element
;