import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'wordBreak', label: __('Word break', 'ska-blocks'), settings: { 'normal': 'normal', 'words': 'break-word', 'all': 'break-all', 'keep': 'keep-all', }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'break', }, ], }, ], } export default config