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