import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'textDecorationThickness', label: __('Text decoration thickness', 'ska-blocks'), settings: { '0': '0px', '1': '1px', '2': '2px', '3': '3px', '4': '4px', '6': '6px', '8': '8px', 'auto': 'auto', 'from-font': 'from-font', }, supports: { bare: true, }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'decoration', }, ], }, ], } export default config