diff --git a/lib/src/models/themes/quill_custom_icon.dart b/lib/src/models/themes/quill_custom_icon.dart new file mode 100644 index 00000000..e25b3f10 --- /dev/null +++ b/lib/src/models/themes/quill_custom_icon.dart @@ -0,0 +1,13 @@ +import 'package:flutter/material.dart'; + +class QuillCustomIcon { + const QuillCustomIcon( + {this.icon, + this.onTap}); + + ///The icon widget + final Widget? icon; + + ///The function when the icon is tapped + final VoidCallback? onTap; +}