UNPKG
react-antd-cssvars
Version:
latest (0.7.3)
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
0.0.1
A minimal cssvars antd module
tenjin0.github.io/react-antd-cssvars/
Tenjin0/react-antd-cssvars
react-antd-cssvars
/
dist
/
components
/
ColorPicker
/
TintsAndShades.d.ts
9 lines
(8 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
"react"
;
import
{ hex }
from
"../../Theme"
;
export
interface
IColorPicker
{
color
:
string
;
onPick
:
(
color
: hex
) =>
void
; }
declare
const
Palette
:
React
.
FunctionComponent
<
IColorPicker
>;
export
default
Palette
;