import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'lineHeight', label: __('Line height', 'ska-blocks'), themeKeys: ['--leading'], supports: { bare: true, }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'leading', }, ], }, ], } export default config