import { InspectorControls } from '@wordpress/block-editor'; import { __ } from '@wordpress/i18n'; import React from 'react'; import { AdvanceSelect, Color, Panel, Select, Slider, } from '../../../../../../assets/js/blocks/components'; const BlockSettings: React.FC = (props) => { const { attributes: { alignment, textColor, fontSize, fontFamily = 'Default' }, setAttributes, } = props; return ( setAttributes({ alignment: val })} responsive={false} label={__('Alignment', 'learning-management-system')} options={[ { label: __('Left', 'learning-management-system'), value: 'left', icon: 'text-align-left', }, { label: __('Center', 'learning-management-system'), value: 'center', icon: 'text-align-center', }, { label: __('Right', 'learning-management-system'), value: 'right', icon: 'text-align-right', }, { label: __('Justify', 'learning-management-system'), value: 'justify', icon: 'text-align-justify', }, ]} /> setAttributes({ textColor: val })} label={__('Color', 'learning-management-system')} value={textColor || ''} />