import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'fontWeight', label: __('Font weight', 'ska-blocks'), themeKeys: ['--font-weight'], schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'font', }, ], }, ], dataType: 'number', hint: 'weight', } export default config