12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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,
- },
- ];
|