import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'animation', label: __('Animation', 'ska-blocks'), themeKeys: ['--animate'], settings: { 'none': 'none', }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'animate', }, ], }, ], } export default config