|
1
|
import { __ } from '@wordpress/i18n'; |
|
2
|
|
|
3
|
const iconOptions = { |
|
4
|
alignment: [ |
|
5
|
{ label: __( 'Top', 'generateblocks' ), value: 'top' }, |
|
6
|
{ label: __( 'Center', 'generateblocks' ), value: 'center' }, |
|
7
|
{ label: __( 'Bottom', 'generateblocks' ), value: 'bottom' }, |
|
8
|
], |
|
9
|
}; |
|
10
|
|
|
11
|
export default iconOptions; |
|
12
|
|