You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
364 B
12 lines
364 B
2 years ago
|
import { ColorPicker, theme } from 'antd';
|
||
|
import type { Color } from 'antd/es/color-picker';
|
||
|
import React, { useState } from 'react';
|
||
|
|
||
|
const Demo: React.FC = () => {
|
||
|
const { token } = theme.useToken();
|
||
|
const [color, setColor] = useState<Color | string>(token.colorPrimary);
|
||
|
return <ColorPicker value={color} onChange={setColor} />;
|
||
|
};
|
||
|
|
||
|
export default Demo;
|