Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 10 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import AbstractDropdownDispatcher from './AbstractDropdownDispatcher'; |
||
2 | import { svgIcon } from '../MDI'; |
||
3 | |||
4 | export default class SmileyDropdownDispatcher extends AbstractDropdownDispatcher { |
||
5 | getMenuItem(schema) { |
||
6 | return super.getMenuItem(schema, { |
||
7 | icon: svgIcon('emoticon'), |
||
8 | }); |
||
9 | } |
||
10 | } |
||
11 |