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.
29 lines
763 B
29 lines
763 B
import { ColorPicker, Space, theme } from 'antd';
|
|
import type { Color } from 'antd/es/color-picker';
|
|
import React, { useMemo, useState } from 'react';
|
|
|
|
export default () => {
|
|
const { token } = theme.useToken();
|
|
const [color, setColor] = useState<Color | string>(token.colorPrimary);
|
|
|
|
const bgColor = useMemo<string>(
|
|
() => (typeof color === 'string' ? color : color.toHexString()),
|
|
[color],
|
|
);
|
|
|
|
const divStyle: React.CSSProperties = {
|
|
width: token.sizeMD,
|
|
height: token.sizeMD,
|
|
borderRadius: token.borderRadiusSM,
|
|
backgroundColor: bgColor,
|
|
};
|
|
|
|
return (
|
|
<ColorPicker value={color} onChange={setColor}>
|
|
<Space>
|
|
<div style={divStyle} />
|
|
<span>{bgColor}</span>
|
|
</Space>
|
|
</ColorPicker>
|
|
);
|
|
};
|
|
|