import { IDropdownOption } from '../interfaces/Components' export const POSITION: IDropdownOption[] = [ { label: 'Duplicate to Left', value: 'left' }, { label: 'Duplicate to Top', value: 'top' }, { label: 'Duplicate to Right', value: 'right' }, { label: 'Duplicate to Bottom', value: 'bottom' } ] export const MENU: IDropdownOption[] = [ { label: 'Text', value: 'Text', icon: '' }, { label: 'Image', value: 'Image', icon: '' }, { label: 'Button', value: 'Button', icon: '' }, { label: 'Box', value: 'Box' }, { label: 'Spacer', value: 'Spacer', icon: '' } ]