in packages/react-settings-form/src/components/BoxStyleSetter/index.tsx [47:62]
onChange(value: string) {
if (position === 'all') {
props.onChange?.(
`${value || '0px'} ${value || '0px'} ${value || '0px'} ${
value || '0px'
}`
)
} else {
matched[PositionMap[position]] = value
props.onChange?.(
`${matched[1] || '0px'} ${matched[2] || '0px'} ${
matched[3] || '0px'
} ${matched[4] || '0px'}`
)
}
},