import { Button, Divider, Space, Tooltip } from 'antd'; import React from 'react'; 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;