import { BaseControl, TextControl } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import ToggleGroup from '../toggle-group'; const GAP_VALUES = { no: 0, sm: 15, md: 30, lg: 45, }; /** * Component Class * * @param props */ export default function GapSettings(props) { const { gap, gapCustom, gapVerticalCustom, allowVerticalGap, onChange } = props; return ( ); }