import React from 'react'; import { capitalize } from '../../lib/capitalize'; import { Banner } from '../core/Banner'; import { Button } from '../core/Button'; import { Editor } from '../core/Editor'; import type { IconProps } from '../core/Icon'; import { Icon } from '../core/Icon'; import { IconButton } from '../core/IconButton'; import { Input } from '../core/Input'; const buttonColors = [ 'primary', 'secondary', 'info', 'success', 'warning', 'danger', 'default', ] as const; const icons: IconProps['icon'][] = [ 'info', 'box', 'update', 'alert', 'arrowBigRightDash', 'download', 'copy', 'magicWand', 'settings', 'trash', 'sparkles', 'pencil', 'paste', 'search', 'sendHorizontal', ]; export function SettingsDesign() { return (