/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
packages/block-library/src/spacer/save.js
20 строк
606 B
Marco Ciampini
ESLint: Replace strict config with bulk suppressions (#81248)
07 авг 2026, 14:34
Не верифицирован
07 авг 2026, 14:34
7f43eaf
Код
Авторство
О чём код?
import { useBlockProps, getSpacingPresetCssVar } from '@wordpress/block-editor'; export default function save( { attributes } ) { const { height, width, style } = attributes; const { layout: { selfStretch } = {} } = style || {}; // If selfStretch is set to 'fill' or 'fit', don't set default height. const finalHeight = selfStretch === 'fill' || selfStretch === 'fit' ? undefined : height; return ( <div { ...useBlockProps.save( { style: { height: getSpacingPresetCssVar( finalHeight ), width: getSpacingPresetCssVar( width ), }, 'aria-hidden': true, } ) } /> ); }