import React from 'react'; import { Button, Divider, Tooltip } from 'antd'; const colors = [ 'pink', 'red', 'yellow', 'orange', 'cyan', 'green', 'blue', 'purple', 'geekblue', 'magenta', 'volcano', 'gold', 'lime', ]; const customColors = ['#f50', '#2db7f5', '#87d068', '#108ee9']; const App: React.FC = () => ( <> Presets
{colors.map((color) => ( ))}
Custom
{customColors.map((color) => ( ))}
); export default App;