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