export const fontOptions = [ { key: 'helvetica', content: 'Helvetica', child: 'Helvetica', }, { key: 'arial', content: 'Arial', child: 'Arial', }, { key: 'courier', content: 'Courier', child: 'Courier', }, { key: 'times new roman', content: 'Times New Roman', child: 'Times New Roman', }, ]; export const styleOptions = [ { key: 'bold', content: 'Bold', child: 'Bold', }, { key: 'italic', content: 'Italic', child: 'Italic', }, ]; export const alignOptions = [ { key: 'align-left', content: 'left', child: 'left', }, { key: 'align-center', content: 'center', child: 'center', }, { key: 'align-right', content: 'right', child: 'right', }, ]; export const sizeOptions = [ { key: 'size_12', content: 12, child: 12, }, { key: 'size_14', content: 14, child: 14, }, { key: 'size_18', content: 18, child: 18, }, { key: 'size_24', content: 24, child: 24, }, { key: 'size_36', content: 36, child: 36, }, { key: 'size_48', content: 48, child: 48, }, { key: 'size_64', content: 64, child: 64, }, ];