import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'placeContent', label: __('Place content', 'ska-blocks'), settings: { 'center': 'center', 'start': 'start', 'end': 'end', 'between': 'space-between', 'around': 'space-around', 'evenly': 'space-evenly', 'stretch': 'stretch', }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'place-content', }, ], }, ], } export default config