import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'lineClamp', label: __('Line clamp', 'ska-blocks'), themeKeys: ['--line-clamp'], settings: { '1': '1', '2': '2', '3': '3', '4': '4', '5': '5', '6': '6', 'none': 'none', }, supports: { bare: true, }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'line-clamp', }, ], }, ], } export default config