123456789101112131415161718192021222324 |
- export default {
- lineType: [
- {
- key: 'highlight',
- icon: 'highlight',
- color: '#FCFF36',
- },
- {
- key: 'underline',
- icon: 'underline',
- color: '#27BEFD',
- },
- {
- key: 'squiggly',
- icon: 'squiggly',
- color: '#02FF36',
- },
- {
- key: 'strikeout',
- icon: 'strikeout',
- color: '#FF1B89',
- },
- ],
- };
|