/** * External dependencies */ import { __ } from '@wordpress/i18n'; import styled from '@emotion/styled'; import { Button } from '@wordpress/components'; /** * Internal dependencies */ import { SettingsSection } from '../shared-components'; import { useSettingsContext } from './settings-context'; const SaveSectionWrapper = styled( SettingsSection )` text-align: right; padding-top: 0; margin-top: 0; `; const SaveSettings = () => { const { isSaving, save } = useSettingsContext(); return ( ); }; export default SaveSettings;