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