import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'flexGrow', label: __('Flex grow', 'ska-blocks'), settings: { '0': '0', 'DEFAULT': '1', }, supports: { bare: true, }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'grow', }, ], }, ], } export default config