import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'whitespace', label: __('Whitespace', 'ska-blocks'), settings: { 'normal': 'normal', 'nowrap': 'nowrap', 'pre': 'pre', 'pre-line': 'pre-line', 'pre-wrap': 'pre-wrap', 'break-spaces': 'break-spaces', }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'whitespace', }, ], }, ], } export default config