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